:root {
    --bg: #000000;
    --bg-card: #0A0A0A;
    --bg-elevated: #111111;
    --bg-elevated-2: #292929;
    --fg: #FAFAFA;
    --fg-muted: #888888;
    --fg-subtle: #666666;
    --accent: #666666;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);

    --accent-white: #FAFAFA;
    --accent-white-faded: rgba(255, 255, 255, 0.3);

    --accent-red: #FF5F56;
    --bg-visual: #0F0F0F;
    --accent-green: #27C93F;
    --accent-yellow: #FFBD2E;

    --font-primary: 'Satoshi', sans-serif;
    --font-heading: 'Power Grotesk', sans-serif;

    --spacing-std: 2rem;
    --container-width: 1100px;
    --radius: 12px;
    --radius-sm: 8px;
}

@font-face {
    font-family: "Power Grotesk";
    src: url("/assets/fonts/PowerGrotesk-Regular.woff2") format("woff2"),
        url("/assets/fonts/PowerGrotesk-Regular.woff") format("woff"),
        url("/assets/fonts/PowerGrotesk-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    font-family: var(--font-primary);
    color: var(--fg);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}


::selection {
    background: var(--accent-white);
    color: var(--bg);
}

p {
    font-weight: 500;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(100, 100, 100, 0.03), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.center-text {
    text-align: center;
}

.mb-large {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.accent {
    color: var(--fg-muted);
    font-style: italic;
    font-family: serif;
}

.accent-text {
    color: var(--accent-green);
}

a {
    text-decoration: none;
    color: inherit;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

#who-we-are .container,
#platform-showcase .container,
#features .container,
#programs .container,
#faq .container,
#contact .container,
#footer .container {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding-left: 40px;
    padding-right: 40px;
}

#who-we-are,
#platform-showcase,
#features,
#programs,
#faq,
#contact {
    padding: 0;
}


.section-title {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--fg);
}

#who-we-are {
    border-top: 1px solid var(--border);
}

#who-we-are .container,
#features .container,
#programs .container,
#faq .container,
#contact .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#platform-showcase .container {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
}

#footer {
    padding: 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--fg-subtle);
}

#footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 40px;
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}


.logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.logo-img-rotate {
    height: 38px;
    width: auto;
    display: block;
    animation: rotateEase 1.5s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes rotateEase {
    0% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .logo-img-rotate {
        display: none;
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--fg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--fg-muted);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--fg);
}

#hero {
    min-height: 70vh;
    max-height: 900px;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;

    background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #000000 80%);
}

.hero-grid-bg {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    z-index: 0;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;

    transform: perspective(500px) rotateX(60deg);

    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);

    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px);
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--fg);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: var(--fg-muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tech-tag {
    font-family: monospace;
    color: var(--fg-subtle);
    font-size: 0.85rem;
    opacity: 0.7;
}

.hero-visuals {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.float-card {
    position: absolute;

    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 260px;

    will-change: transform;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.1s linear;
}

.float-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 10 !important;
}

.float-card,
.float-card * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.card-header-dots {
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 6px;
}

.header-logo-fade {
    margin-left: auto;
    opacity: 0.2;
    height: 14px;
    filter: brightness(200%);
    pointer-events: none;
    user-select: none;
}

.card-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.65rem;
    color: var(--fg-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fg);
}

.icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.card-1 {
    top: 10%;
    right: 0%;
    transform: rotate(2deg);
    z-index: 2;
}

.card-2 {
    top: 40%;
    left: 0%;
    transform: rotate(-1deg);
    z-index: 3;
}

.card-3 {
    bottom: 5%;
    right: 10%;
    transform: rotate(1deg);
    z-index: 4;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-white {
    background: var(--fg);
    color: var(--bg);
    border: 1px solid var(--fg);
}

.btn-white:hover {
    background: var(--bg-elevated);
    color: var(--fg);
    border-color: var(--border-hover);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--fg);
}

.btn-outline:hover {
    border-color: var(--border-hover);
    background: var(--bg-elevated);
}



.section-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-subtle);
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--fg);
}

.text-muted-base {
    color: var(--fg-muted);
}

.text-brand {
    font-family: var(--font-heading);
    color: var(--accent-white);
    font-size: 1.1em;
}

.text-highlight {
    color: var(--fg);
    font-weight: 700;
}

.browser-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 50px;
}

.browser-header {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.browser-url {
    background: var(--bg);
    color: var(--fg-subtle);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 6px;
    flex-grow: 1;
    font-family: monospace;
    text-align: center;
    border: 1px solid var(--border);
}

.browser-content {
    height: 350px;
    background: var(--bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-grid {
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.ui-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    border-right: 3px solid var(--bg-elevated-2);
    height: 100%;
}

.ui-main {
    width: 80%;
    padding: 20px;
}

.ui-bar {
    height: 40px;
    background: var(--bg-elevated-2);
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.ui-box-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.ui-footer {
    height: 100px;
    background: var(--bg-elevated-2);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.ui-box {
    width: 33%;
    height: 100px;
    background: var(--bg-elevated-2);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.ui-box,
.ui-bar,
.ui-footer {
    padding-top: 60px;
    border-radius: 6px;
    border: 1px solid var(--border);

    background: var(--bg-elevated-2);
    background-image: linear-gradient(90deg,
            var(--bg-elevated-2) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            var(--bg-elevated-2) 100%);
    background-size: 200% 100%;

    animation: skeletonShimmer 2s infinite linear;
}

@keyframes skeletonShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.accent-text {
    color: var(--accent-green);
    animation: terminalBlink 1s step-end infinite;
}

@keyframes terminalBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.browser-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(39, 201, 63, 0.03) 51%,
            transparent 52%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
}

.browser-overlay {
    position: absolute;
    z-index: 2;
}

.mono-text {
    font-family: monospace;
    font-size: 1rem;
    color: var(--fg-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-left: -40px;
    margin-right: -40px;
}

.bento-cell {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    transition: background 0.3s ease;
    min-height: 280px;
}

.bento-cell:hover {
    background: var(--bg-elevated);
}

.bento-cell:nth-child(1) {
    border-right: 1px solid var(--border);
}

.bento-cell:nth-child(2) {
    border-right: none;
}

.bento-cell:nth-child(3),
.bento-cell:nth-child(4),
.bento-cell:nth-child(5) {
    border-bottom: none;
}

.bento-cell:nth-child(5) {
    border-right: none;
}


.featured-cell {
    grid-column: span 2;
    justify-content: center;
    padding-right: 4rem;
}

.bento-title-large {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--fg);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.bento-text-large {
    color: var(--fg-muted);
    font-size: 1.1rem;
    max-width: 480px;
}

.bento-content-bottom {
    margin-top: auto;
    text-align: left;
}

.bento-content-bottom h3 {
    font-size: 1.1rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bento-content-bottom p {
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.5;
}


.bento-visual {
    height: 140px;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.window-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #222;
    width: 100%;
}

.window-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}

.window-header .dot.red {
    background: var(--accent-red);
}

.window-header .dot.yellow {
    background: var(--accent-yellow);
}

.window-header .dot.green {
    background: var(--accent-green);
}


.illustration-code {
    width: 180px;
    background: #050505;
    border: 1px solid var(--accent-white-faded);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c-line {
    height: 4px;
    background: #222;
    border-radius: 2px;
}

.w-60 {
    width: 60%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.injection-block {
    background: rgba(255, 95, 86, 0.08);
    border-left: 2px solid #FF5F56;
    padding: 2px 6px;
    margin: 2px 0;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #FF5F56;
    display: flex;
    align-items: center;
    width: 100%;
}

.changing-numbers {
    animation: change 2s infinite;
}

@keyframes change {
    0% {
        content: "1";
    }

    20% {
        content: "2";
    }

    40% {
        content: "3";
    }

    60% {
        content: "4";
    }

    80% {
        content: "5";
    }

    100% {
        content: "6";
    }
}

.code-tag {
    color: #FF5F56;
    opacity: 0.6;
}


.illustration-terminal {
    width: 180px;
    background: #050505;
    border: 1px solid var(--accent-white-faded);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.term-content-simple {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #ccc;
    text-align: left;
    line-height: 1.4;
}

.prompt-user {
    color: var(--accent-white);
    font-weight: bold;
    margin-right: 6px;
}

.cursor-blink {
    display: inline-block;
    width: 6px;
    height: 12px;
    background: #fff;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


.illustration-network {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.net-node {
    width: 32px;
    height: 32px;
    background: #111;
    border: 1px solid #444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 12px;
    color: #666;
    transition: all 0.3s;
}

.node-start {
    border-color: var(--accent-red);
    color: var(--accent-white);
    box-shadow: 0 0 10px rgba(114, 96, 244, 0.2);
}

.node-mid {
    border-color: var(--accent-yellow);
    background: rgba(114, 96, 244, 0.1);
    color: var(--fg);
}

.node-end {
    border-color: var(--accent-green);
    border-style: dashed;
    opacity: 0.7;
}

.net-arrow {
    font-size: 14px;
    color: #333;
}


.illustration-skills {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.skill-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-label {
    font-size: 10px;
    font-family: monospace;
    color: #666;
    width: 35px;
    text-align: right;
}

.skill-track {
    flex: 1;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--accent-white);
    border-radius: 3px;
}

.skill-fill-red,
.skill-fill-yellow,
.skill-fill-green {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-fill-red {
    background: var(--accent-red);
}

.skill-fill-yellow {
    background: var(--accent-yellow);
}

.skill-fill-green {
    background: var(--accent-green);
}


@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-cell {
        grid-column: span 2;
        text-align: center;
        align-items: center;
        padding-right: 2.5rem;
    }

    .featured-cell .bento-text-large {
        margin: 0 auto;
    }

    .bento-cell {
        border-right: 1px solid var(--border) !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .bento-cell:nth-child(2n) {
        border-right: none !important;
    }

    .bento-cell:nth-child(4),
    .bento-cell:nth-child(5) {
        border-bottom: none !important;
    }

    .bento-cell:nth-child(1) {
        border-right: none !important;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        margin-left: -20px;
        margin-right: -20px;
    }

    .featured-cell {
        grid-column: span 1;
        padding: 2rem;
        text-align: left;
    }

    .featured-cell .bento-text-large {
        margin: 0;
    }

    .bento-content-bottom {
        text-align: left;
    }

    .bento-visual {
        justify-content: flex-start;
    }

    .bento-visual {
        justify-content: center;
    }

    .bento-cell {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
        min-height: auto;
    }

    .bento-cell:last-child {
        border-bottom: none !important;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--fg-subtle);
}

.feature-desc {
    color: var(--fg-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}


.tech-strip-embed {
    margin-left: -40px;
    margin-right: -40px;

    padding-top: 3.5rem;
    padding-bottom: 0rem;

    background-color: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.strip-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.strip-text-white {
    color: var(--accent-white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.strip-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.icon-mini {
    font-size: 1.2rem;
    line-height: 1;
    user-select: none;

    filter: grayscale(100%) brightness(200%);
    opacity: 0.5;
    transform: scale(1);

    animation: iconColorWave 7s ease-in-out infinite;
}


.strip-subtext {
    color: #888;
    font-size: 0.9rem;
    max-width: 680px;
    margin: 0 auto;
}

@keyframes iconColorWave {

    0%,
    100% {
        filter: grayscale(100%) brightness(200%);
        opacity: 0.5;
        transform: scale(1);
    }

    10%,
    20% {
        filter: grayscale(0%) brightness(100%);
        opacity: 1;
        transform: scale(1.3);
    }
}

.icon-mini:nth-child(1) {
    animation-delay: 1s;
}

.icon-mini:nth-child(2) {
    animation-delay: 2s;
}

.icon-mini:nth-child(3) {
    animation-delay: 3s;
}

.icon-mini:nth-child(4) {
    animation-delay: 4s;
}

.icon-mini:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: translateY(-3px) scale(1.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .tech-strip-embed {
        margin-left: -20px;
        margin-right: -20px;
        padding-top: 3rem;
    }

    .strip-header {
        font-size: 1rem;
        gap: 8px;
    }

    .icon-mini {
        font-size: 1rem;
    }
}


.code-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    min-height: 260px;
}

.window-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
    align-items: center;
}

.window-title {
    color: var(--fg-subtle);
    margin-left: 10px;
    font-size: 0.8rem;
}

.terminal-content {
    color: var(--fg-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prompt-user {
    color: var(--fg-subtle);
    margin-right: 5px;
}

.prompt-check {
    color: #27C93F;
    margin-left: 8px;
}

.prompt-highlight {
    color: var(--fg);
}

.prompt-highlight-purple {
    color: var(--accent-white);
}

.blue-team-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.workflow-bubble {
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workflow-bubble.primary {
    background: var(--bg-elevated);
    color: var(--fg);
    border: 1px solid var(--accent-green);
}

.workflow-bubble.secondary {
    background: var(--bg-card);
    border: 1px solid var(--accent-yellow);
    color: var(--fg-muted);
}

.workflow-bubble.warning {
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    color: var(--fg-muted);
}

.workflow-status {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--fg-subtle);
    font-family: monospace;
}


.workshops-grid-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-left: -40px;
    margin-right: -40px;
}

.grid-cell {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.3s ease;
    min-height: 320px;
}

.grid-cell:hover {
    background: var(--bg-elevated);
}

.cell-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.75rem;
}

.cell-content p {
    color: var(--fg-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
}


.grid-cell:nth-child(2) {
    border-right: none;
}

.grid-cell.full-span {
    grid-column: 1 / -1;
    border-bottom: none;
    border-right: none;
    min-height: auto;
    justify-content: center;
}


.grid-cell.bootcamp-featured {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, #050505 100%);
    overflow: hidden;
    border-bottom: none;
    padding: 4.5rem 4rem;
    min-height: auto;
    display: block;
}

.bootcamp-bg-glow {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bootcamp-watermark {
    position: absolute;
    right: -60px;
    bottom: -110px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
}

.bootcamp-watermark img {
    width: 600px;
    height: auto;
}

.bootcamp-content-featured {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.bootcamp-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.bootcamp-meta {
    margin-bottom: 1.25rem;
}

.bootcamp-featured h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--fg);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.bootcamp-featured h2 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 400;
    color: var(--accent-white);
    margin-top: 0;
    opacity: 0.9;
}

.bootcamp-body p {
    font-size: 1.1rem;
    color: var(--fg-muted);
    line-height: 1.7;
    max-width: 750px;
    margin-bottom: 2.5rem;
}

.bootcamp-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.spots-left {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    font-family: monospace;
    letter-spacing: -0.02em;
}


@media (max-width: 1024px) {
    .grid-cell.bootcamp-featured {
        padding: 3rem 2.5rem;
    }

    .bootcamp-watermark img {
        width: 450px;
    }
}

@media (max-width: 768px) {

    .workshops-grid-system {
        display: flex;
        flex-direction: column;

        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;

        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .grid-cell,
    .grid-cell.bootcamp-featured {
        width: 100%;
        min-height: auto;

        border-right: none !important;
        border-left: none !important;

        border-bottom: 1px solid var(--border) !important;

        padding: 2.5rem 1.5rem;
    }

    .grid-cell:last-child,
    .grid-cell.bootcamp-featured:last-child {
        border-bottom: none !important;
    }

    .bootcamp-featured .bootcamp-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .bootcamp-featured h1 {
        font-size: 1.8rem;
    }

    .bootcamp-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .bootcamp-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .bootcamp-watermark {
        right: -20px;
        bottom: -20px;
        opacity: 0.02;
    }

    .bootcamp-watermark img {
        width: 250px;
    }
}


.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-green {
    color: #27C93F;
    border: 1px solid #13461A;
    background: rgba(39, 201, 63, 0.1);
}

.badge-yellow {
    color: #FFBD2E;
    border: 1px solid #524114;
    background: rgba(255, 189, 46, 0.1);
}

.badge-pink {
    color: #FF5F85;
    border: 1px solid #5C1A2A;
    background: rgba(255, 95, 133, 0.1);
}

.btn-small {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--fg);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    pointer-events: none;
}

.btn-small:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
}






.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    color: var(--fg);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--fg-muted);
}

.chevron {
    transition: transform 0.3s;
    color: var(--fg-subtle);
}

.faq-item:nth-child(3n+1) .chevron {
    opacity: 0.7;
    color: var(--accent-red);
}

.faq-item:nth-child(3n+2) .chevron {
    opacity: 0.7;
    color: var(--accent-yellow);
}

.faq-item:nth-child(3n+3) .chevron {
    opacity: 0.7;
    color: var(--accent-green);
}

.faq-item.active .chevron {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--fg-muted);
    font-size: 1rem;
}







#contact {
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.access-panel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.panel-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(255, 255, 255, 0.3);
    border-style: solid;
    transition: all 0.3s ease;
}

.top-left {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
    border-radius: 6px 0 0 0;
}

.top-right {
    top: -1px;
    right: -1px;
    border-width: 1px 1px 0 0;
    border-radius: 0 6px 0 0;
}

.bottom-left {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 1px 1px;
    border-radius: 0 0 0 6px;
}

.bottom-right {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
    border-radius: 0 0 6px 0;
}

.access-panel:hover .panel-corner {
    width: 30px;
    height: 30px;
    border-color: var(--fg);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-text {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--fg-subtle);
    letter-spacing: 0.05em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #27C93F;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.blink {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

.panel-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--fg);
    line-height: 1.1;
}

.panel-sub {
    color: var(--fg-muted);
    max-width: 450px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.panel-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-glow {
    background: var(--fg);
    color: #000;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    background: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--fg-muted);
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--fg);
    color: var(--fg);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .access-panel {
        padding: 3rem 1.5rem;
    }

    .panel-title {
        font-size: 2rem;
    }

    .panel-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-glow,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

#footer {
    padding: 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--fg-subtle);
}

#footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.footer-logo {
    color: var(--fg);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--fg-muted);
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.origin-tag {
    font-size: 0.85rem;
    color: var(--fg);
    font-weight: 500;
    opacity: 0.9;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.footer-link {
    color: var(--fg-subtle);
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-link:hover {
    color: var(--fg);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.footer-sep {
    color: var(--border-hover);
    user-select: none;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        flex: auto;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--fg);
}

@media (max-width: 900px) {
    .features-grid-2x3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .feature-card:nth-child(3n) {
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 768px) {

    .hero-grid,
    .features-grid,
    .workshop-grid,
    .section-grid {
        grid-template-columns: 1fr;
    }

    .hero-visuals {
        display: none;
    }

    .bootcamp-layout {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        border-top: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .browser-content {
        height: 250px;
    }

    .features-grid-2x3 {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: none !important;
    }

    #who-we-are .container,
    #platform-showcase .container,
    #features .container,
    #programs .container,
    #faq .container,
    #contact .container,
    #footer .container {
        border-left: none;
        border-right: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .divider {
        border-left: none;
        border-right: none;
    }

    .platform-features {}
}


html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visuals {
        display: none;
    }

    .bento-grid,
    .workshops-grid-system {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        max-width: 100vw;
    }

    .browser-window {
        width: 100%;
        border-radius: 6px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
    }
}