/* =========================================================
   HERI WIBOWO
   SaaS / IT Solutions Portfolio
   Dark Emerald + Neon Lime Theme
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    /* Dark Theme Colors */
    --lime: #84ff2f;
    --lime-dark: #64dc1d;
    --lime-light: #b8ff84;

    /* Backgrounds */
    --bg-primary: #081f18;   /* Main dark background */
    --bg-secondary: #0a261e; /* Slightly lighter for cards */
    --bg-tertiary: #0d2d24;  /* Even lighter for elements */

    /* Texts */
    --text-primary: #f1f7f3;
    --text-secondary: #a8bdb4;
    --text-muted: #708c81;
    --text-on-accent: #061a14; /* Dark text for lime buttons */

    /* Borders */
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.11);
    --border-lime: rgba(132, 255, 47, 0.24);

    --white: #f5f8f5;

    --shadow-sm:
        0 12px 34px rgba(0, 0, 0, 0.08);
    --shadow-md:
        0 25px 65px rgba(0, 0, 0, 0.12);
    --shadow-lg:
        0 45px 100px rgba(0, 0, 0, 0.17);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --radius-xl: 42px;

    --font-sans:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    --font-mono:
        'JetBrains Mono',
        'Fira Code',
        Consolas,
        monospace;

    --transition:
        0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}


body {
    min-height: 100vh;

    color: var(--text-primary);

    background:
        radial-gradient(
            circle at 18% 8%,
            rgba(132, 255, 47, 0.06),
            transparent 27%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(132, 255, 47, 0.035),
            transparent 24%
        ),
        var(--bg-primary);

    font-family: var(--font-sans);

    line-height: 1.65;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
}


img {
    max-width: 100%;
    display: block;
}


ul {
    list-style: none;
}


::selection {
    color: var(--text-on-accent);
    background: var(--lime-dark);
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}


::-webkit-scrollbar-thumb {
    background: #c1d1c9;

    border:
        2px solid var(--bg-tertiary);

    border-radius: 999px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--lime);
}


/* =========================================================
   GENERAL LAYOUT
   ========================================================= */

.container {
    width:
        min(calc(100% - 3rem), 1240px);

    margin-inline: auto;
}


.section {
    position: relative;
    padding: 7rem 0;
    scroll-margin-top: 7rem;
}


.section__header {
    max-width: 780px;

    margin:
        0 auto 3.8rem;

    text-align: center;
}


.section-tag {
    display: inline-flex;

    margin-bottom: 1rem;

    color: var(--lime);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.section__title {
    color: var(--white);

    font-size:
        clamp(2.2rem, 4.5vw, 4.7rem);

    font-weight: 700;

    line-height: 0.98;

    letter-spacing: -0.06em;
}


.section__subtitle {
    max-width: 630px;

    margin:
        1.3rem auto 0;

    color: var(--text-muted);

    font-size: 1rem;
}


.gradient-text {
    color: var(--lime);

    background:
        linear-gradient(
            110deg,
            #f4ffef 0%,
            var(--lime) 42%,
            #5bd615 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

[data-reveal] {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}


[data-reveal].is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   LOADER
   ========================================================= */

.loader-wrapper {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            #12372b,
            #081f18 65%
        );

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}


.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}


.loader-card {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 1.2rem;
}


.loader-logo {
    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 22px;

    font-size: 1.75rem;

    box-shadow:
        0 0 0 12px rgba(132, 255, 47, 0.05),
        0 0 60px rgba(132, 255, 47, 0.17);

    animation:
        loader-float 1.5s
        ease-in-out infinite;
}


.loader-command {
    padding:
        0.8rem 1.1rem;

    color: #bdd1c8;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid var(--border);

    border-radius: 14px;

    font-family: var(--font-mono);

    font-size: 0.78rem;
}


.loader-prompt {
    color: var(--lime);
}


.loader-dots {
    color: var(--lime);

    animation:
        blink 1s step-end infinite;
}


@keyframes loader-float {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0.65rem;

    min-height: 46px;

    padding:
        0.78rem 1.4rem;

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.btn:hover {
    transform:
        translateY(-3px);
}


.btn--large {
    min-height: 54px;

    padding:
        0.95rem 1.65rem;
}


.btn--primary {
    color: var(--text-on-accent);

    background:
        linear-gradient(
            135deg,
            var(--lime),
            #6ee51f
        );

    box-shadow:
        0 14px 35px
        rgba(132, 255, 47, 0.14);
}


.btn--ghost {
    color: var(--text-primary);

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid var(--border-strong);
}


.btn--ghost:hover {
    color: var(--lime);

    background:
        rgba(132, 255, 47, 0.055);

    border-color:
        rgba(132, 255, 47, 0.3);
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;

    top: 14px;
    left: 50%;

    z-index: 1000;

    width:
        min(calc(100% - 2rem), 1240px);

    transform:
        translateX(-50%);

    background:
        rgba(7, 29, 23, 0.72);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 999px;

    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.header.scrolled {
    background:
        rgba(6, 26, 20, 0.94);

    border-color:
        rgba(132, 255, 47, 0.11);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3);
}

.nav {
    width: 100%;

    min-height: 66px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding:
        0 0.65rem 0 1rem;
}


.nav__logo {
    display: flex;

    align-items: center;

    gap: 0.7rem;

    flex-shrink: 0;
}


.nav__logo-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 11px;

    font-size: 0.95rem;

    box-shadow:
        0 0 24px rgba(132, 255, 47, 0.14);
}


.nav__logo-text {
    color: #f5faf6;

    font-size: 1.08rem;
    font-weight: 800;

    letter-spacing: -0.04em;
}


.nav__logo-text span {
    color: var(--lime);
}


.nav__menu {
    display: flex;

    align-items: center;

    gap: 1.4rem;
}


.nav__list {
    display: flex;

    align-items: center;

    gap: 1.15rem;
}


.nav__link {
    position: relative;

    display: block;

    padding:
        0.5rem 0.1rem;

    color: #91aa9f;

    font-size: 0.78rem;
    font-weight: 500;

    transition:
        color var(--transition);
}


.nav__link::after {
    content: '';

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--lime);

    opacity: 0;

    transform:
        translateX(-50%)
        scale(0);

    transition:
        opacity var(--transition),
        transform var(--transition);

    box-shadow:
        0 0 12px rgba(132, 255, 47, 0.6);
}


.nav__link:hover,
.nav__link.active {
    color: var(--lime);
}


.nav__link:hover::after,
.nav__link.active::after {
    opacity: 1;

    transform:
        translateX(-50%)
        scale(1);
}


.nav__cta {
    min-height: 42px;

    padding:
        0.65rem 1.15rem;

    font-size: 0.78rem;
}


.nav__toggle {
    display: none;

    width: 42px;
    height: 42px;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 50%;

    cursor: pointer;

    font-size: 1rem;
}

.nav__link:focus-visible,
.nav__toggle:focus-visible,
.btn:focus-visible,
.scroll-top:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 4px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        10rem 0 6.5rem;

    overflow: hidden;

    perspective: 900px;
}


.hero__grid-bg {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.17;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 86%
        );
}


.hero__orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(80px);
}


.hero__orb--one {
    width: 430px;
    height: 430px;

    right: 5%;
    top: 12%;

    background:
        rgba(132, 255, 47, 0.08);
}


.hero__orb--two {
    width: 320px;
    height: 320px;

    left: -120px;
    bottom: 0;

    background:
        rgba(132, 255, 47, 0.045);
}


.hero__container {
    position: relative;

    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(430px, 0.98fr);

    align-items: center;

    gap: 5rem;
}


.hero__content {
    position: relative;
}


.hero__badge {
    display: inline-flex;

    align-items: center;

    gap: 0.6rem;

    margin-bottom: 1.6rem;

    padding:
        0.58rem 0.9rem;

    color: var(--lime);

    background:
        rgba(132, 255, 47, 0.065);

    border:
        1px solid rgba(132, 255, 47, 0.16);

    border-radius: 999px;

    font-size: 0.76rem;
    font-weight: 600;
}


.pulse-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    background: var(--lime);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(132, 255, 47, 0.07),
        0 0 16px rgba(132, 255, 47, 0.35);

    animation:
        pulse-dot 2s infinite;
}


@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;

        transform:
            scale(1);
    }

    50% {
        opacity: 0.55;

        transform:
            scale(1.25);
    }
}


.hero__title {
    max-width: 740px;

    margin-bottom: 1.5rem;

    color: var(--white);

    font-size:
        clamp(3.2rem, 5.6vw, 6.4rem);

    font-weight: 700;

    line-height: 0.92;

    letter-spacing: -0.075em;
}


.hero__title-outline {
    display: block;

    color: transparent;
}


.hero__title .gradient-text {
    display: block;
}


.hero__description {
    max-width: 620px;

    margin-bottom: 2rem;

    color: #9ab1a7;

    font-size: 1rem;

    line-height: 1.8;
}

.hero__description strong {
    color: #e2eee7;

    font-weight: 600;
}


.hero__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 0.8rem;

    margin-bottom: 0.95rem;
}

.hero__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    width: fit-content;
    margin-bottom: 2.2rem;
    padding: 0.8rem 1rem;

    color: var(--text-on-accent);
    background: linear-gradient(135deg, var(--lime-dark), var(--lime));

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.92rem;
    font-weight: 700;

    box-shadow: 0 10px 28px rgba(84, 180, 39, 0.22);
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero__stats {
    max-width: 620px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0.75rem;
}


.hero-stat {
    padding:
        1rem;

    background:
        rgba(255, 255, 255, 0.028);

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 16px;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.hero-stat:hover {
    transform:
        translateY(-4px);

    background:
        rgba(132, 255, 47, 0.045);

    border-color:
        rgba(132, 255, 47, 0.17);
}


.hero-stat__number {
    display: block;

    margin-bottom: 0.2rem;

    color: var(--lime);

    font-size: 1.4rem;
    font-weight: 700;

    letter-spacing: -0.04em;
}


.hero-stat__label {
    color: var(--text-muted);

    font-size: 0.72rem;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero__visual {
    position: relative;

    min-width: 0;

    isolation: isolate;

    transform-style: preserve-3d;

    transition:
        transform 0.25s ease;
}

.visual-glow {
    position: absolute;

    z-index: -2;

    left: 50%;
    top: 50%;

    width: 380px;
    height: 380px;

    transform:
        translate(-50%, -50%);

    background:
        rgba(132, 255, 47, 0.16);

    border-radius: 50%;

    filter: blur(105px);
}


.hero__visual::before,
.hero__visual::after {
    content: '';

    position: absolute;

    z-index: -1;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(132, 255, 47, 0.07);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.hero__visual::before {
    width: 110%;
    aspect-ratio: 1;
}


.hero__visual::after {
    width: 132%;
    aspect-ratio: 1;
}


.dashboard-card {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #153d31 0%,
            #0a261e 100%
        );

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 30px;

    box-shadow:
        0 50px 110px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.dashboard-card::before {
    content: '';

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -120px;

    background:
        rgba(132, 255, 47, 0.18);

    border-radius: 50%;

    filter: blur(75px);
}


.dashboard-card__topbar {
    min-height: 52px;

    display: flex;

    align-items: center;

    gap: 0.8rem;

    padding:
        0.8rem 1rem;

    background:
        rgba(4, 20, 15, 0.52);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}


.window-dots {
    display: flex;

    gap: 6px;
}


.window-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}


.window-dot--red {
    background: #ff665f;
}


.window-dot--yellow {
    background: #ffca4b;
}


.window-dot--green {
    background: #4dd86b;
}


.dashboard-path {
    margin-left: auto;

    color: #67877a;

    font-family: var(--font-mono);

    font-size: 0.62rem;
}


.dashboard-online {
    display: flex;

    align-items: center;

    gap: 0.35rem;

    padding:
        0.3rem 0.55rem;

    color: var(--lime);

    background:
        rgba(132, 255, 47, 0.065);

    border-radius: 999px;

    font-size: 0.62rem;
    font-weight: 700;
}


.dashboard-online span {
    width: 6px;
    height: 6px;

    background: var(--lime);

    border-radius: 50%;
}


.dashboard-card__body {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding: 1.6rem;
}

.terminal-shell {
    position: relative;
    padding: 1rem;

    background:
        linear-gradient(145deg, rgba(5, 23, 16, 0.97), rgba(0, 11, 8, 0.95));

    border:
        1px solid rgba(132, 255, 47, 0.2);

    border-radius: 20px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 1px rgba(132, 255, 47, 0.05),
        0 20px 45px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

.terminal-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(132, 255, 47, 0.035) 0px,
        rgba(132, 255, 47, 0.035) 1px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    opacity: 0.35;
}

.terminal-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    margin-bottom: 0.85rem;
    padding-bottom: 0.7rem;

    border-bottom:
        1px solid rgba(132, 255, 47, 0.14);
}

.terminal-shell__label {
    color: #dff8e6;

    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-shadow: 0 0 8px rgba(132, 255, 47, 0.16);
}

.terminal-shell__status {
    color: var(--lime);

    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.terminal-shell__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.terminal-line {
    color: #cff7d8;

    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-shadow: 0 0 6px rgba(132, 255, 47, 0.08);
}

.terminal-line--root {
    color: #f4ffef;
}

.terminal-output {
    color: #8fb2a0;

    font-family: var(--font-mono);
    font-size: 0.68rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.terminal-output--success {
    color: var(--lime);
}

.terminal-output--log {
    color: #7dcf95;
    font-size: 0.64rem;
}

.terminal-prompt--root {
    margin-right: 0.45rem;
    color: var(--lime);
    font-weight: 700;
}

.terminal-log-shell {
    margin: 0.45rem 0 0.35rem;
    padding: 0.7rem;

    background: rgba(2, 15, 10, 0.64);
    border: 1px solid rgba(132, 255, 47, 0.12);
    border-radius: 12px;
}

.terminal-log-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;

    color: #769c84;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.terminal-log-stream {
    overflow: hidden;
    max-height: 82px;
}

.terminal-log-track {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    animation: terminal-scroll 10s linear infinite;
}

.terminal-cursor {
    display: inline-block;
    margin-left: 0.18rem;
    color: var(--lime);
    animation: blink 1s step-end infinite;
    text-shadow: 0 0 10px rgba(132, 255, 47, 0.45);
}

.terminal-line.is-typing::after {
    content: '|';
    margin-left: 0.25rem;
    color: var(--lime);
    animation: blink 0.8s step-end infinite;
}

.terminal-output.is-appearing {
    opacity: 0;
    transform: translateY(4px);
    animation: terminal-fade-in 0.45s ease forwards;
}

.terminal-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.terminal-stat {
    padding: 0.8rem;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 14px;
}

.terminal-stat__label {
    display: block;

    margin-bottom: 0.2rem;

    color: #6f9183;

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.terminal-stat strong {
    color: var(--white);

    font-size: 0.95rem;
}


.dashboard-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 1.35rem;
}


.dashboard-eyebrow {
    display: block;

    margin-bottom: 0.25rem;

    color: #66897b;

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.dashboard-heading h2 {
    color: #f3f8f4;

    font-size: 1.4rem;

    letter-spacing: -0.04em;
}


.dashboard-status-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 13px;

    box-shadow:
        0 10px 25px rgba(132, 255, 47, 0.13);
}


.dashboard-metrics {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0.7rem;

    margin-bottom: 1rem;
}


.dashboard-metric {
    min-width: 0;

    padding: 0.85rem;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 14px;
}


.dashboard-metric--accent {
    color: var(--text-on-accent);

    background: var(--lime);

    border-color: transparent;
}


.dashboard-metric__label {
    display: block;

    overflow: hidden;

    color: #77978a;

    font-size: 0.61rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.dashboard-metric--accent
.dashboard-metric__label {
    color:
        rgba(6, 26, 20, 0.64);
}


.dashboard-metric strong {
    display: block;

    margin:
        0.25rem 0;

    color: #f1f7f3;

    font-size: 1.15rem;
}


.dashboard-metric--accent strong {
    color: var(--text-on-accent);
}


.metric-trend {
    color: #6f9183;

    font-size: 0.55rem;
}


.dashboard-metric--accent
.metric-trend {
    color:
        rgba(6, 26, 20, 0.65);
}


.metric-trend--up {
    color: var(--lime);
}


.dashboard-graph {
    padding: 1rem;

    margin-bottom: 1rem;

    background:
        rgba(3, 17, 12, 0.31);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 16px;
}


.graph-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 1rem;
}


.graph-header span {
    display: block;

    color: #6c8c7f;

    font-size: 0.6rem;
}


.graph-header strong {
    display: block;

    margin-top: 0.2rem;

    color: #eff6f1;

    font-size: 0.82rem;
}


.graph-period {
    padding:
        0.25rem 0.5rem;

    color: var(--lime) !important;

    background:
        rgba(132, 255, 47, 0.06);

    border-radius: 999px;
}


.graph-area {
    height: 90px;

    display: flex;

    align-items: flex-end;

    gap: 6px;
}


.graph-bar {
    width: 100%;

    height: var(--height);

    background:
        linear-gradient(
            to top,
            rgba(132, 255, 47, 0.22),
            var(--lime)
        );

    border-radius:
        4px 4px 1px 1px;

    transform-origin: bottom;

    animation:
        graph-grow 1.5s
        ease-in-out infinite alternate;

    animation-delay:
        var(--delay);
}


@keyframes graph-grow {
    from {
        opacity: 0.55;

        transform:
            scaleY(0.72);
    }

    to {
        opacity: 1;

        transform:
            scaleY(1);
    }
}


.mini-terminal {
    padding: 0.9rem;

    color: #9eb7ac;

    background:
        rgba(3, 15, 11, 0.45);

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 14px;

    font-family: var(--font-mono);

    font-size: 0.61rem;
}


.mini-terminal__line {
    margin-bottom: 0.42rem;
}


.mini-terminal__line:last-child {
    margin-bottom: 0;
}


.mini-terminal__line--success {
    color: var(--lime);
}


.terminal-prompt {
    color: var(--lime);

    margin-right: 0.35rem;
}


@keyframes terminal-scroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes terminal-fade-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 0.7rem;

    padding:
        0.72rem 0.9rem;

    background:
        rgba(9, 36, 28, 0.9);

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(15px);

    animation:
        floating-card 5s
        ease-in-out infinite;
}

.floating-card:hover {
    will-change: transform;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}


.floating-card strong,
.floating-card span {
    display: block;
}


.floating-card strong {
    color: #edf5f0;

    font-size: 0.68rem;
}


.floating-card span {
    color: #718e83;

    font-size: 0.54rem;
}


.floating-card--security {
    left: -46px;
    bottom: 15%;
}


.floating-card--deploy {
    right: -34px;
    top: 17%;

    animation-delay:
        -2s;
}


.floating-card__icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 10px;
}


.floating-card__pulse {
    width: 10px;
    height: 10px;

    background: var(--lime);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(132, 255, 47, 0.08),
        0 0 15px rgba(132, 255, 47, 0.28);
}


@keyframes floating-card {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.experience__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1.2rem;
}

.experience-card {
    padding: 1.4rem;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2);
}

.experience-card__role {
    display: inline-block;

    margin-bottom: 0.5rem;

    color: var(--lime);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.experience-card__company {
    margin-bottom: 0.35rem;

    color: var(--white);

    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.experience-card__type {
    margin-bottom: 0.85rem;

    color: #8aa698;

    font-size: 0.9rem;
}

.experience-card ul {
    display: grid;
    gap: 0.6rem;
}

.experience-card li {
    position: relative;

    padding-left: 0.95rem;

    color: #b4c6bd;

    font-size: 0.93rem;
    line-height: 1.65;
}

.experience-card li::before {
    content: '•';

    position: absolute;
    left: 0;

    color: var(--lime);
}


/* =========================================================
   SKILLS
   ========================================================= */

.skills__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1.2rem;
}

.skills-card,
.why-hire__card,
.achievement-card {
    padding: 1.4rem;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2);
}

.skills-card h3 {
    margin-bottom: 0.95rem;

    color: var(--white);

    font-size: 1.05rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skills-list span {
    padding: 0.45rem 0.7rem;

    color: #dcefe4;

    background:
        rgba(132, 255, 47, 0.1);

    border:
        1px solid rgba(132, 255, 47, 0.18);

    border-radius: 999px;

    font-size: 0.8rem;
}

.why-hire__card {
    padding: 2rem;
}

.why-hire__content .section__subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.achievements__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1.2rem;
}

.achievement-card {
    text-align: center;
}

.achievement-card i {
    margin-bottom: 0.8rem;

    color: var(--lime);

    font-size: 1.5rem;
}

.achievement-card h3 {
    margin-bottom: 0.5rem;

    color: var(--white);
    font-size: 1rem;
}

.achievement-card p {
    color: #b4c6bd;
    font-size: 0.92rem;
    line-height: 1.7;
}

.download-cv {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    margin-top: 1rem;
    padding: 0.8rem 1rem;

    color: var(--text-on-accent);
    background: linear-gradient(135deg, var(--lime), #cfff8d);

    border-radius: 999px;

    font-weight: 700;
}


/* =========================================================
   TECHNOLOGY STRIP
   ========================================================= */

.technology-strip {
    padding:
        2rem 0 3rem;
}


.technology-strip__label {
    margin-bottom: 1.5rem;

    color: #57766a;

    text-align: center;

    font-size: 0.67rem;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.technology-list {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 0.7rem;
}


.technology-item {
    min-height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 0.55rem;

    color: #78978a;

    background:
        rgba(255, 255, 255, 0.022);

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 14px;

    font-size: 0.75rem;
    font-weight: 600;

    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.technology-item i {
    font-size: 1.1rem;
}


.technology-item:hover {
    color: var(--lime);

    background:
        rgba(132, 255, 47, 0.04);

    border-color:
        rgba(132, 255, 47, 0.14);

    transform:
        translateY(-3px);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    padding-top: 5rem;
}


.about__panel {
    display: grid;

    grid-template-columns: 0.8fr 1fr 1fr;

    align-items: center;

    gap: 2rem;

    padding:
        4rem;

    background:
        linear-gradient(
            145deg,
            #13392e,
            #0b2921
        );

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 36px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.2);
}

.about__photo {
    grid-column: 1 / 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

/* Custom reveal animation for the profile photo */
.about__photo[data-reveal] {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
    transition: 
        opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about__photo[data-reveal].is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}


.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content {
    grid-column: 2 / 4;
}


.about__title {
    margin-bottom: 1.2rem;

    color: var(--white);

    font-size:
        clamp(2.2rem, 4vw, 4.2rem);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.06em;
}


.about__description {
    margin-bottom: 1.5rem;

    color: #8da79c;

    line-height: 1.8;
}


.text-link {
    display: inline-flex;

    align-items: center;

    gap: 0.55rem;

    color: var(--lime);

    font-size: 0.82rem;
    font-weight: 700;
}


.text-link i {
    transition:
        transform var(--transition);
}


.text-link:hover i {
    transform:
        translateX(5px);
}


.about__features {
    display: flex;
    grid-column: 1 / 4;

    flex-direction: column;

    gap: 0.65rem;

    padding: 0.8rem;

    background:
        rgba(255, 255, 255, 0.022);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 24px;
}


.about-feature {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 1rem;

    padding: 1.15rem;

    border:
        1px solid transparent;

    border-radius: 17px;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.about-feature:hover {
    transform:
        translateX(5px);

    background:
        rgba(132, 255, 47, 0.045);

    border-color:
        rgba(132, 255, 47, 0.1);
}


.about-feature__icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 13px;

    box-shadow:
        0 12px 25px
        rgba(132, 255, 47, 0.11);
}

.about-feature__number {
    display: block;

    margin-bottom: 0.2rem;

    color: var(--lime);

    font-family: var(--font-mono);

    font-size: 0.58rem;
}


.about-feature h3 {
    margin-bottom: 0.25rem;

    color: #eff6f2;

    font-size: 1rem;
}


.about-feature p {
    color: #799589;

    font-size: 0.82rem;
}


/* =========================================================
   EXPERTISE BENTO
   ========================================================= */

.expertise {
    overflow: hidden;
}


.expertise__grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 1rem;
}


.expertise-card {
    --mx: 50%;
    --my: 50%;

    position: relative;

    min-height: 290px;

    grid-column:
        span 2;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    padding: 1.5rem;

    background:
        linear-gradient(
            145deg,
            #143a2f,
            #0e2d24
        );

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 25px;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.expertise-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(132, 255, 47, 0.24);

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.22);
}

.expertise-card--accent {
    grid-column:
        span 3;

    color: var(--text-on-accent);

    background:
        var(--lime);

    border-color: transparent;
}

.expertise-card__top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 3rem;
}


.expertise-card__index {
    color: #668679;

    font-family: var(--font-mono);

    font-size: 0.6rem;
}


.expertise-card--accent
.expertise-card__index {
    color:
        rgba(6, 26, 20, 0.52);
}


.expertise-card__icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 15px;

    box-shadow:
        0 14px 30px
        rgba(132, 255, 47, 0.1);
}


.expertise-card--accent
.expertise-card__icon {
    color: var(--lime);

    background:
        var(--bg-primary);
}


.expertise-card__content {
    position: relative;

    z-index: 2;
}


.expertise-card h3 {
    margin-bottom: 0.6rem;

    color: #eff6f2;

    font-size: 1.2rem;

    letter-spacing: -0.03em;
}


.expertise-card--accent h3 {
    color: var(--text-on-accent);
}


.expertise-card p {
    margin-bottom: 1.1rem;

    color: #7f9b8f;

    font-size: 0.84rem;
}


.expertise-card--accent p {
    color:
        rgba(6, 26, 20, 0.67);
}


.expertise-card__tags {
    display: flex;

    flex-wrap: wrap;

    gap: 0.4rem;
}


.expertise-card__tags span {
    padding:
        0.35rem 0.62rem;

    color: #a7beb4;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 999px;

    font-size: 0.62rem;
}


.expertise-card--accent
.expertise-card__tags span {
    color: var(--text-on-accent);

    background:
        rgba(6, 26, 20, 0.08);

    border-color:
        rgba(6, 26, 20, 0.09);
}

/* =========================================================
   PROJECTS
   ========================================================= */

.projects {
    background:
        #0a241c;
}

.projects__header {
    display: grid;

    grid-template-columns:
        1fr 0.7fr;

    align-items: end;

    gap: 3rem;

    margin-bottom: 3rem;
}


.projects__grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1rem;
}


.project-card {
    --mx: 50%;
    --my: 50%;

    position: relative;

    overflow: hidden;

    background:
        #13382d;

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 27px;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.project-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(132, 255, 47, 0.22);

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.25);
}

.project-card a {
    display: block;
    height: 100%;
}


.project-card__visual {
    position: relative;

    height: 270px;

    overflow: hidden;

    display: grid;

    place-items: center;
}


.project-card__visual--lime {
    color: var(--text-on-accent);

    background: var(--lime);
}


.project-card__visual--dark {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(132, 255, 47, 0.12),
            transparent 35%
        ),
        #102f26;
}


.project-card__visual--light {
    color: #12372c;

    background:
        linear-gradient(
            145deg,
            #eef3ef,
            #cdd9d1
        );
}


.project-visual-grid {
    position: absolute;
    inset: 0;

    opacity: 0.14;

    background-image:
        linear-gradient(
            rgba(6, 26, 20, 0.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(6, 26, 20, 0.4) 1px,
            transparent 1px
        );

    background-size:
        28px 28px;
}


.project-visual-icon {
    position: absolute;

    left: 1.5rem;
    top: 1.5rem;

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    color: var(--lime);

    background: var(--bg-primary);

    border-radius: 18px;

    font-size: 1.35rem;
}


.project-visual-panel {
    position: absolute;

    right: 1.2rem;
    bottom: 1.2rem;

    width: 72%;

    padding: 1rem;

    color: #f3f8f4;

    background:
        rgba(6, 26, 20, 0.9);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 17px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.2);
}


.project-visual-panel span,
.project-visual-panel strong {
    display: block;
}


.project-visual-panel span {
    color: #7f9b90;

    font-size: 0.63rem;
}


.project-visual-panel strong {
    margin:
        0.2rem 0 0.7rem;

    font-size: 0.84rem;
}


.project-progress {
    height: 5px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 999px;
}


.project-progress span {
    height: 100%;

    background: var(--lime);

    border-radius: inherit;
}


/* Message UI */

.message-ui {
    width: 78%;

    padding: 1rem;

    background:
        rgba(9, 34, 27, 0.84);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.28);
}

.message-ui__top {
    display: flex;

    align-items: center;

    gap: 0.7rem;

    margin-bottom: 1rem;
}


.message-ui__top i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime-dark);

    border-radius: 13px;

    font-size: 1.2rem;
}


.message-ui__top strong,
.message-ui__top span {
    display: block;
}


.message-ui__top strong {
    color: #eff6f2;

    font-size: 0.76rem;
}


.message-ui__top span {
    color: var(--lime);

    font-size: 0.57rem;
}


.message-bubble {
    width: 85%;

    margin-bottom: 0.75rem;

    padding: 0.7rem;

    color: #9fb7ad;

    background:
        rgba(255, 255, 255, 0.045);

    border-radius:
        5px 13px 13px 13px;

    font-size: 0.66rem;
}


.message-action {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding: 0.7rem;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 12px;

    font-size: 0.67rem;
    font-weight: 700;
}


/* Security Visual */

.security-shield {
    width: 92px;
    height: 92px;

    display: grid;
    place-items: center;

    color: var(--lime);

    background: #12382d;

    border-radius: 28px;

    font-size: 2.2rem;

    box-shadow:
        0 22px 50px rgba(18, 56, 45, 0.22);
}


.security-status {
    position: absolute;

    right: 1.2rem;
    bottom: 1.2rem;

    width: 70%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding: 0.9rem;

    color: #edf5f0;

    background: #12372d;

    border-radius: 15px;
}


.security-status span,
.security-status strong {
    display: block;
}


.security-status span {
    color: #769287;

    font-size: 0.58rem;
}


.security-status strong {
    font-size: 0.74rem;
}


.security-status i {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime-dark);

    border-radius: 50%;

    font-size: 0.65rem;
}


.security-lines {
    position: absolute;

    left: 1.2rem;
    top: 1.2rem;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.security-lines span {
    display: block;

    width: 40px;
    height: 3px;

    background:
        rgba(18, 55, 45, 0.2);

    border-radius: 999px;
}


.security-lines span:nth-child(2) {
    width: 28px;
}


.security-lines span:nth-child(3) {
    width: 34px;
}


/* Project Content */

.project-card__content {
    padding: 1.4rem;
}


.project-card__meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 0.8rem;

    color: var(--lime);

    font-size: 0.64rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.09em;
}


.project-card__meta i {
    color: #617f73;
}


.project-card h3 {
    margin-bottom: 0.55rem;

    color: #f0f7f2;

    font-size: 1.15rem;

    letter-spacing: -0.03em;
}


.project-card__content p {
    margin-bottom: 1rem;

    color: #7e9a8f;

    font-size: 0.82rem;
}


.project-card__tech {
    display: flex;

    flex-wrap: wrap;

    gap: 0.4rem;
}


.project-card__tech span {
    padding:
        0.32rem 0.58rem;

    color: #a1b8ae;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 999px;

    font-size: 0.6rem;
}


/* =========================================================
   AUTOMATION
   ========================================================= */

.automation__grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 1rem;
}


.glass-card {
    --mx: 50%;
    --my: 50%;

    position: relative;

    overflow: hidden;

    padding: 1.6rem;

    background:
        linear-gradient(
            145deg,
            rgba(20, 58, 47, 0.94),
            rgba(10, 40, 32, 0.96)
        );

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 26px;

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.17);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.glass-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(132, 255, 47, 0.2);

    box-shadow:
        0 36px 85px rgba(0, 0, 0, 0.23);
}

.card-kicker {
    display: block;

    margin-bottom: 0.2rem;

    color: var(--lime);

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.card-heading h3 {
    color: #f0f6f2;

    font-size: 1.15rem;
}


.card-heading__icon {
    color: var(--lime);

    font-size: 1.1rem;
}


.live-pill {
    display: flex;

    align-items: center;

    gap: 0.4rem;

    padding:
        0.35rem 0.6rem;

    color: var(--lime);

    background:
        rgba(132, 255, 47, 0.06);

    border:
        1px solid rgba(132, 255, 47, 0.1);

    border-radius: 999px;

    font-size: 0.6rem;
    font-weight: 700;
}


.live-pill span {
    width: 6px;
    height: 6px;

    background: var(--lime);

    border-radius: 50%;

    box-shadow:
        0 0 10px
        rgba(132, 255, 47, 0.5);
}


.system-online {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1rem;

    padding: 1rem;

    background:
        rgba(132, 255, 47, 0.055);

    border:
        1px solid rgba(132, 255, 47, 0.13);

    border-radius: 16px;
}


.system-online__icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 13px;
}


.system-online strong,
.system-online span {
    display: block;
}


.system-online strong {
    color: #eef6f1;

    font-size: 0.83rem;
}


.system-online span {
    color: #739084;

    font-size: 0.63rem;
}


.status-metrics {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0.65rem;

    margin-bottom: 1rem;
}


.status-metric {
    padding: 0.9rem;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 14px;
}


.status-metric span,
.status-metric strong {
    display: block;
}


.status-metric span {
    color: #6d897e;

    font-size: 0.58rem;
}


.status-metric strong {
    margin-top: 0.2rem;

    color: var(--lime);

    font-size: 1rem;
}


.server-location {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding-top: 1rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.055);
}


.server-location i {
    color: var(--lime);
}


.server-location strong,
.server-location span {
    display: block;
}


.server-location strong {
    color: #dfeae4;

    font-size: 0.73rem;
}


.server-location span {
    color: #6c887d;

    font-size: 0.6rem;
}


/* Logs */

.logs-list {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 0.55rem;
}


.log-entry {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 0.75rem;

    padding: 0.78rem;

    background:
        rgba(255, 255, 255, 0.028);

    border:
        1px solid rgba(255, 255, 255, 0.045);

    border-radius: 13px;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.log-entry:hover {
    transform:
        translateX(4px);

    background:
        rgba(132, 255, 47, 0.04);

    border-color:
        rgba(132, 255, 47, 0.11);
}


.log-entry__status {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    color: var(--lime);

    background:
        rgba(132, 255, 47, 0.07);

    border-radius: 10px;

    font-size: 0.65rem;
}


.log-entry__status--success {
    color: var(--text-on-accent);

    background: var(--lime);
}


.log-entry__content strong,
.log-entry__content span {
    display: block;
}


.log-entry__content strong {
    color: #dfeae4;

    font-size: 0.72rem;
}


.log-entry__content span {
    color: #6e8a7f;

    font-size: 0.6rem;
}


.log-entry time {
    color: #688478;

    font-family: var(--font-mono);

    font-size: 0.57rem;
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact {
    padding-top: 4rem;
}


.contact__card {
    position: relative;

    overflow: hidden;

    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        5rem 2rem;

    background: var(--lime);

    border-radius: 36px;

    box-shadow:
        0 42px 100px rgba(0, 0, 0, 0.25);
}


.contact__orb {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    bottom: -230px;

    background:
        rgba(7, 29, 22, 0.13);

    border-radius: 50%;

    filter: blur(15px);
}


.contact__rings {
    position: absolute;

    left: -180px;
    top: -260px;

    width: 560px;
    height: 560px;

    border:
        1px solid rgba(7, 29, 22, 0.11);

    border-radius: 50%;

    box-shadow:
        0 0 0 65px
        rgba(7, 29, 22, 0.025),

        0 0 0 135px
        rgba(7, 29, 22, 0.018);
}


.contact__content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    text-align: center;
}


.contact__eyebrow {
    display: inline-flex;

    margin-bottom: 1rem;

    padding:
        0.42rem 0.7rem;

    color: var(--text-on-accent);

    background:
        rgba(7, 29, 22, 0.08);

    border:
        1px solid rgba(7, 29, 22, 0.09);

    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.contact__content h2 {
    max-width: 800px;

    margin:
        0 auto 1rem;

    color: var(--text-on-accent);

    font-size:
        clamp(2.7rem, 5.5vw, 6rem);

    font-weight: 700;

    line-height: 0.92;

    letter-spacing: -0.075em;
}


.contact__content h2 span {
    display: block;

    color: transparent;
}


.contact__content p {
    max-width: 650px;

    margin:
        0 auto 2rem;

    color:
        rgba(6, 26, 20, 0.67);
}

.contact__actions {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.7rem;

    margin-bottom: 2rem;
}


.contact__primary-btn {
    color: #ecf8f0;

    background: var(--bg-primary);

    box-shadow:
        0 16px 35px rgba(7, 29, 22, 0.2);
}


.contact__primary-btn:hover {
    color: var(--lime);

    background: #04140f;
}


.contact__secondary-btn {
    color: var(--text-on-accent);

    background:
        rgba(255, 255, 255, 0.24);

    border:
        1px solid rgba(6, 26, 20, 0.12);
}


.contact__secondary-btn:hover {
    background:
        rgba(255, 255, 255, 0.4);
}


.contact__details {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap:
        0.8rem 1.4rem;
}


.contact__details span {
    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    color:
        rgba(6, 26, 20, 0.66);
    font-size: 0.7rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding:
        5rem 0 2rem;

    background:
        #061a14;
}
.footer__brand,
.footer__column,
.footer__connect {
    min-width: 0;
}


.footer__grid {
    display: grid;

    grid-template-columns:
        1.8fr 0.8fr 0.8fr 1.2fr;

    gap: 3rem;
}


.footer__logo {
    display: inline-flex;

    align-items: center;

    gap: 0.7rem;

    margin-bottom: 1rem;

    color: #f0f7f2;

    font-size: 1.08rem;
    font-weight: 800;

    letter-spacing: -0.04em;
}


.footer__logo-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 11px;
}


.footer__brand p {
    max-width: 360px;

    color: #678378;

    font-size: 0.82rem;
}


.footer__column,
.footer__connect {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0.65rem;
}


.footer__column h3,
.footer__connect h3 {
    margin-bottom: 0.35rem;

    color: #ecf5ef;

    font-size: 0.8rem;
}


.footer__column a {
    color: #668277;

    font-size: 0.76rem;

    transition:
        color var(--transition),
        transform var(--transition);
}


.footer__column a:hover {
    color: var(--lime);

    transform:
        translateX(4px);
}


.footer__connect p {
    color: #668277;

    font-size: 0.76rem;
}


.social-links {
    display: flex;

    flex-wrap: wrap;

    gap: 0.55rem;

    margin-top: 0.3rem;
}


.social-links a {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: #93aa9f;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.social-links a:hover {
    color: var(--text-on-accent);

    background: var(--lime);

    border-color: var(--lime);

    transform:
        translateY(-4px);
}


.footer__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-top: 3.5rem;

    padding-top: 1.5rem;

    color: #4f6b60;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    font-size: 0.66rem;
}


/* =========================================================
   SCROLL TOP
   ========================================================= */

.scroll-top {
    position: fixed;

    right: 1.4rem;
    bottom: 1.4rem;

    z-index: 900;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    color: var(--text-on-accent);

    background: var(--lime);

    border-radius: 50%;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(132, 255, 47, 0.08);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}


.scroll-top.show {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.scroll-top:hover {
    transform:
        translateY(-4px);
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.whatsapp-float {
    position: fixed;

    right: 1.4rem;
    bottom: calc(1.4rem + 46px + 0.75rem); /* Position above scroll-top */

    z-index: 900;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: #25d366;

    border-radius: 50%;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);

    font-size: 1.5rem;

    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}


/* =========================================================
   RESPONSIVE 1180
   ========================================================= */

@media (max-width: 1180px) {

    .hero__container { grid-template-columns: 1fr; gap: 5rem; }

    .hero__content {
        max-width: 850px;

        margin-inline: auto;

        text-align: center;
    }

    .hero__description { margin-left: auto; margin-right: auto; }

    .hero__actions { justify-content: center; }

    .hero__stats { margin-inline: auto; }

    .hero__visual {
        width:
            min(100%, 690px);

        margin-inline: auto;
    }

    .about__panel { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .about__photo { grid-column: auto; max-width: 350px; margin: 0 auto 1rem; }
    .about__content { grid-column: auto; text-align: center; }
    .about__content .text-link { justify-content: center; }
    .about__features { grid-column: auto; }


    .projects__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .project-card:last-child {
        grid-column:
            auto; }

}


/* =========================================================
   RESPONSIVE 980
   ========================================================= */

@media (max-width: 980px) {
    .experience__grid,
    .skills__grid,
    .achievements__grid {
        grid-template-columns: 1fr;
    }


    .header {
        border-radius: 24px;
    }


    .nav__toggle {
        display: grid;
        place-items: center;

        z-index: 1002;
    }


    .nav__menu {
        position: fixed;

        top: -14px;
        right: -110%;

        width:
            min(84vw, 360px);

        height:
            100dvh;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding:
            6.5rem 1.4rem 2rem;

        background:
            rgba(5, 25, 19, 0.98);

        border-left:
            1px solid
            rgba(132, 255, 47, 0.11);

        border-radius:
            30px 0 0 30px;

        box-shadow:
            -30px 0 80px
            rgba(0, 0, 0, 0.38);

        backdrop-filter: blur(25px);

        transition:
            right 0.4s
            cubic-bezier(0.2, 0.8, 0.2, 1);
    }


    .nav__menu.show {
        right:
            calc(-1rem);
    }


    .nav__list {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0.35rem;
    }


    .nav__link {
        padding:
            0.9rem 1rem;

        color: #b5c8bf;

        border-radius: 13px;

        font-size: 0.9rem;
    }


    .nav__link::after {
        display: none;
    }


    .nav__link:hover,
    .nav__link.active {
        color: var(--lime);

        background:
            rgba(132, 255, 47, 0.055);
    }


    .nav__cta {
        margin-top: 1rem;
    }


    .expertise__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .expertise-card,
    .expertise-card--large,
    .expertise-card--accent,
    .expertise-card--wide {
        grid-column:
            span 1;
    }


    .expertise-card:last-child {
        grid-column:
            1 / -1;
    }


    .automation__grid {
        grid-template-columns:
            1fr;
    }


    .footer__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE 760
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width:
            min(calc(100% - 2rem), 1240px);
    }


    .section {
        padding:
            5rem 0;
    }


    .header {
        top: 8px;

        width:
            calc(100% - 1rem);
    }


    .nav {
        min-height: 60px;
    }


    .nav__menu {
        top: -8px;
    }


    .nav__menu.show {
        right:
            -0.5rem;
    }


    .hero {
        padding:
            8.5rem 0 5rem;
    }


    .hero__title {
        font-size:
            clamp(2.8rem, 13vw, 4.8rem);
    }


    .hero__stats {
        grid-template-columns:
            1fr;
    }


    .floating-card--security {
        left: -10px;
    }


    .floating-card--deploy {
        right: -8px;
    }


    .technology-list {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .about__panel {
        padding:
            2.2rem 1.3rem;

        border-radius: 28px;
    }


    .expertise__grid {
        grid-template-columns:
            1fr;
    }


    .expertise-card,
    .expertise-card--large,
    .expertise-card--accent,
    .expertise-card--wide,
    .expertise-card:last-child {
        grid-column:
            auto;
    }


    .projects__header {
        grid-template-columns:
            1fr;

        gap: 1.2rem;
    }


    .projects__grid {
        grid-template-columns:
            1fr;
    }


    .project-card:last-child {
        grid-column:
            auto;
    }


    .footer__grid {
        grid-template-columns:
            1fr;

        gap: 2rem;
    }


    .footer__bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer__grid {
        gap: 2.2rem;
    }

}


/* =========================================================
   RESPONSIVE 540
   ========================================================= */

@media (max-width: 540px) {

    .nav__logo-text {
        font-size: 0.96rem;
    }


    .hero__title {
        font-size:
            clamp(2.5rem, 14vw, 3.7rem);
    }


    .hero__description {
        font-size: 0.9rem;
    }


    .hero__actions {
        flex-direction: column;
    }


    .hero__actions .btn {
        width: 100%;
    }


    .dashboard-card__body {
        padding: 1rem;
    }


    .dashboard-path {
        display: none;
    }


    .dashboard-metrics {
        grid-template-columns:
            1fr;
    }


    .dashboard-metric {
        display: grid;

        grid-template-columns:
            1fr auto;

        align-items: center;

        gap: 0.3rem 1rem;
    }


    .dashboard-metric__label {
        grid-column:
            1;
    }


    .dashboard-metric strong {
        grid-column:
            2;

        grid-row:
            1 / span 2;
    }


    .metric-trend {
        grid-column:
            1;
    }


    .floating-card {
        display: none;
    }


    .technology-list {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-feature {
        grid-template-columns:
            1fr;
    }


    .status-metrics {
        grid-template-columns:
            1fr;
    }


    .log-entry {
        grid-template-columns:
            auto 1fr;
    }


    .log-entry time {
        grid-column:
            2;
    }


    .contact__card {
        min-height: 430px;

        padding:
            4rem 1rem;

        border-radius: 27px;
    }


    .contact__content h2 {
        font-size:
            clamp(2.5rem, 14vw, 4rem);
    }


    .contact__actions {
        flex-direction: column;
    }


    .contact__actions .btn {
        width: 100%;
    }


    .contact__details {
        flex-direction: column;

        align-items: center;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@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;
    }


    [data-reveal] {
        opacity: 1;

        transform: none;
    }

}