:root {
    --black: #090909;
    --ebony: #4b5043;
    --muted-teal: #9bc4bc;
    --frosted-mint: #d3ffe9;
    --pearl-aqua: #8ddbe0;
    --white: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--black);
    scroll-padding-top: 90px;
}

body {
    background-color: var(--black);
    color: var(--frosted-mint);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 219, 224, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Header & Nav */
.main-nav {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    padding: 1rem 0;
    background: rgba(9, 9, 9, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(75, 80, 67, 0.3);
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-name {
    color: var(--white);
}

.brand-dot {
    color: var(--pearl-aqua);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted-teal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--pearl-aqua);
}

.nav-cta {
    background: var(--pearl-aqua);
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 700 !important;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: rgba(141, 219, 224, 0.06);
    border: 1px solid rgba(141, 219, 224, 0.18);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* Hero Section */
.hero-premium {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(155, 196, 188, 0.1);
    border: 1px solid rgba(155, 196, 188, 0.2);
    border-radius: 100px;
    color: var(--muted-teal);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-premium h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-quote {
    margin: -0.75rem 0 1.25rem;
    color: var(--pearl-aqua);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
}

.gradient-text {
    background: linear-gradient(90deg, var(--pearl-aqua), var(--frosted-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-teal);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--pearl-aqua);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 219, 224, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--ebony);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Abstract Shapes */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--ebony);
    top: 10%;
    right: -10%;
    opacity: 0.3;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--pearl-aqua);
    bottom: 20%;
    right: 20%;
    opacity: 0.1;
}

/* Product Ecosystem */
.product-ecosystem {
    padding: 10rem 0;
}

.section-header {
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

/* About */
.about-section {
    position: relative;
    padding: 10rem 0;
    border-top: 1px solid rgba(141, 219, 224, 0.08);
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(141, 219, 224, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 219, 224, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.about-intro {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 9rem;
}

.eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: var(--pearl-aqua);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-copy p {
    max-width: 680px;
    color: var(--muted-teal);
}

.about-copy .about-lead {
    margin-bottom: 1.25rem;
    color: var(--frosted-mint);
    font-size: 1.2rem;
    line-height: 1.8;
}

.profile-terminal {
    overflow: hidden;
    background: rgba(13, 13, 13, 0.86);
    border: 1px solid rgba(141, 219, 224, 0.2);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(141, 219, 224, 0.12);
    color: var(--ebony);
    font-family: monospace;
    font-size: 0.8rem;
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.terminal-bar .dot {
    width: 9px;
    height: 9px;
}

.terminal-body {
    padding: 2rem;
    font-family: monospace;
    color: var(--frosted-mint);
}

.terminal-body > p {
    margin-bottom: 0.65rem;
}

.prompt {
    color: var(--pearl-aqua);
}

.terminal-output {
    padding-left: 1.2rem;
    color: var(--muted-teal);
}

.terminal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

.terminal-metrics div {
    padding: 1rem 0.75rem;
    background: rgba(141, 219, 224, 0.05);
    border: 1px solid rgba(141, 219, 224, 0.1);
    border-radius: 12px;
}

.terminal-metrics strong,
.terminal-metrics span {
    display: block;
}

.terminal-metrics strong {
    color: var(--pearl-aqua);
    font-family: var(--font-main);
    font-size: 1.05rem;
}

.terminal-metrics span {
    margin-top: 0.2rem;
    color: var(--ebony);
    font-size: 0.68rem;
}

.typing-line::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 1em;
    margin-left: 5px;
    background: var(--pearl-aqua);
    vertical-align: -2px;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.capability-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 3rem;
    margin-bottom: 3rem;
}

.capability-header h3,
.philosophy-title h3 {
    color: var(--white);
    font-size: 2.25rem;
}

.capability-header > p {
    max-width: 430px;
    color: var(--muted-teal);
    text-align: right;
}

.skill-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.skill-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(155, 196, 188, 0.12);
    border-radius: 22px;
    transition: var(--transition-smooth);
}

.skill-card:hover {
    transform: translateY(-7px);
    background: rgba(141, 219, 224, 0.05);
    border-color: rgba(141, 219, 224, 0.45);
}

.skill-card-featured {
    background: linear-gradient(145deg, rgba(141, 219, 224, 0.12), rgba(255, 255, 255, 0.02));
}

.skill-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.skill-index {
    color: var(--pearl-aqua);
    font-family: monospace;
    font-weight: 700;
}

.level-pill {
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(155, 196, 188, 0.16);
    border-radius: 100px;
    color: var(--muted-teal);
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
}

.skill-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.35rem;
}

.skill-card p {
    margin-bottom: 2rem;
    color: var(--muted-teal);
    font-size: 0.9rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.skill-tags span {
    padding: 0.35rem 0.65rem;
    background: rgba(141, 219, 224, 0.07);
    border-radius: 6px;
    color: var(--frosted-mint);
    font-family: monospace;
    font-size: 0.72rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-item.reverse {
    direction: rtl;
}

.product-item.reverse .product-info {
    direction: ltr;
}

.product-item.reverse .product-preview {
    direction: ltr;
}

.product-category {
    display: block;
    color: var(--pearl-aqua);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.product-info p {
    font-size: 1.1rem;
    color: var(--muted-teal);
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--frosted-mint);
    font-weight: 500;
}

.product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--pearl-aqua);
    border-radius: 50%;
    flex: 0 0 auto;
}

.product-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.link-btn {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--pearl-aqua);
    padding-bottom: 4px;
}

.source-link {
    color: var(--muted-teal);
    text-decoration: none;
    font-size: 0.95rem;
}

/* Preview Cards */
.product-preview {
    perspective: 1000px;
    width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    height: 400px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    transform: rotateY(-10deg) rotateX(5deg);
    overflow: hidden;
}

.card-body {
    height: calc(100% - 44px);
}

.product-item:hover .glass-card {
    transform: rotateY(0) rotateX(0);
    border-color: var(--pearl-aqua);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.skeleton-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-bottom: 1rem;
}

.skeleton-line.long { width: 80%; }
.skeleton-line.mid { width: 60%; }
.skeleton-line.short { width: 40%; }

.skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-item {
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

/* Vision Section */
.vision-section {
    padding: 10rem 0;
    background: #0d0d0d;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vision-text > p {
    max-width: 650px;
    color: var(--muted-teal);
    font-size: 1.1rem;
}

.vision-text blockquote {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--pearl-aqua);
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.5;
}

.vision-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vision-principles span {
    padding: 0.55rem 0.85rem;
    background: rgba(141, 219, 224, 0.06);
    border: 1px solid rgba(141, 219, 224, 0.12);
    border-radius: 100px;
    color: var(--muted-teal);
    font-size: 0.75rem;
    font-weight: 700;
}

.learning-path {
    padding: 2rem;
    background: var(--black);
    border: 1px solid rgba(141, 219, 224, 0.14);
    border-radius: 24px;
}

.learning-path-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(141, 219, 224, 0.1);
    color: var(--muted-teal);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--pearl-aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(141, 219, 224, 0.08);
}

.learning-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(141, 219, 224, 0.08);
}

.learning-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.learning-number {
    color: var(--pearl-aqua);
    font-family: monospace;
}

.learning-item strong {
    color: var(--white);
}

.learning-item p {
    margin-top: 0.35rem;
    color: var(--muted-teal);
    font-size: 0.82rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 5rem;
    align-items: start;
    margin-top: 8rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(141, 219, 224, 0.12);
}

.philosophy-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.philosophy-steps div {
    min-height: 130px;
    padding: 1.5rem;
    border-top: 1px solid rgba(141, 219, 224, 0.16);
}

.philosophy-steps div:nth-child(odd) {
    border-right: 1px solid rgba(141, 219, 224, 0.16);
}

.philosophy-steps span {
    display: block;
    margin-bottom: 1rem;
    color: var(--pearl-aqua);
    font-family: monospace;
}

.philosophy-steps p {
    color: var(--frosted-mint);
    font-weight: 600;
}

/* Connect Section */
.connect-section {
    padding: 10rem 0;
}

.connect-card {
    background: linear-gradient(135deg, #151515 0%, var(--black) 100%);
    padding: 6rem;
    border-radius: 40px;
    border: 1px solid var(--ebony);
    text-align: center;
}

.connect-card h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.connect-card p {
    font-size: 1.2rem;
    color: var(--muted-teal);
    margin-bottom: 3rem;
}

.connect-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--muted-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--pearl-aqua);
}

/* Footer */
.corporate-footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(75, 80, 67, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ebony);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-legal a {
    color: var(--ebony);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-premium h1 { font-size: 3.5rem; }
    .product-item { grid-template-columns: 1fr; gap: 3rem; }
    .product-item.reverse { direction: ltr; }
    .glass-card { transform: none; }
    .vision-grid { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; gap: 3rem; }
    .skill-grid { grid-template-columns: 1fr 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
    .connect-card { padding: 3rem; }
}

@media (max-width: 768px) {
    .main-nav { padding: 1.25rem 0; }
    .main-nav.scrolled { padding: 0.8rem 0; }
    .brand { font-size: 1.15rem; }
    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
    }
    .main-nav nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1.25rem;
        right: 1.25rem;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }
    .main-nav.menu-open nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 0.75rem;
        background: rgba(13, 13, 13, 0.96);
        border: 1px solid rgba(141, 219, 224, 0.15);
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(20px);
    }
    .nav-links a {
        display: block;
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }
    .nav-cta {
        margin-top: 0.35rem;
        text-align: center;
    }
    .hero-premium {
        min-height: 100svh;
        padding: 7rem 0 4rem;
    }
    .hero-content { max-width: 100%; }
    .hero-premium h1 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
        letter-spacing: -1.5px;
    }
    .hero-quote {
        font-size: 1rem;
        text-align: left;
    }
    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    .hero-actions { flex-direction: column; }
    .hero-actions a {
        width: 100%;
        padding: 0.9rem 1.5rem;
        text-align: center;
    }
    .hero-visual { width: 100%; opacity: 0.75; }
    .shape-1 { width: 260px; height: 260px; }
    .shape-2 { width: 210px; height: 210px; }
    .about-section,
    .product-ecosystem,
    .vision-section,
    .connect-section { padding: 6rem 0; }
    .container { padding: 0 1.25rem; }
    .section-title { font-size: clamp(2rem, 9vw, 2.5rem); line-height: 1.15; }
    .section-header { margin-bottom: 3.5rem; }
    .about-intro { margin-bottom: 5rem; }
    .about-copy .about-lead { font-size: 1.05rem; }
    .terminal-body { padding: 1.25rem; font-size: 0.82rem; }
    .terminal-bar { gap: 0.75rem; padding: 0.9rem 1rem; }
    .skill-grid { grid-template-columns: 1fr; }
    .capability-header { align-items: start; flex-direction: column; }
    .capability-header > p { text-align: left; }
    .terminal-metrics { grid-template-columns: 1fr; }
    .skill-card { min-height: 0; padding: 1.5rem; }
    .skill-topline { align-items: flex-start; margin-bottom: 2.25rem; }
    .level-pill { white-space: normal; text-align: right; }
    .product-list { gap: 6rem; }
    .product-item { gap: 2.5rem; }
    .product-info h3 { font-size: 2rem; }
    .product-info p { font-size: 1rem; }
    .product-features li { align-items: flex-start; font-size: 0.92rem; }
    .product-features li::before { margin-top: 0.55rem; }
    .product-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
    }
    .glass-card {
        height: min(360px, 95vw);
        padding: 1rem;
        border-radius: 18px;
    }
    .card-header { margin-bottom: 1rem; }
    .card-body { height: calc(100% - 28px); }
    .skeleton-grid { gap: 0.75rem; }
    .grid-item { height: 80px; }
    .vision-text blockquote { font-size: 1.2rem; }
    .learning-path { padding: 1.4rem; }
    .philosophy-grid { margin-top: 5rem; padding-top: 4rem; }
    .philosophy-steps { grid-template-columns: 1fr; }
    .philosophy-steps div:nth-child(odd) { border-right: 0; }
    .connect-card { padding: 3rem 1.25rem; border-radius: 24px; }
    .connect-card h2 { font-size: clamp(2rem, 10vw, 2.4rem); }
    .connect-card h2 br { display: none; }
    .connect-card p { font-size: 1rem; }
    .connect-actions,
    .connect-actions .btn-primary { width: 100%; }
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
    .footer-legal { flex-wrap: wrap; gap: 1rem 1.5rem; }
    .cursor-glow { display: none; }
}

@media (max-width: 380px) {
    .container { padding: 0 1rem; }
    .main-nav nav { left: 1rem; right: 1rem; }
    .hero-premium h1 { font-size: 2.25rem; }
    .skill-topline { flex-direction: column; gap: 0.65rem; }
    .level-pill { text-align: left; }
    .terminal-output { padding-left: 0.65rem; }
}

@media (hover: none) {
    .skill-card:hover,
    .btn-primary:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top; 
    border-radius: 16px;
}
