:root {
    --bg-deep: #060E1E;
    --bg-panel: #0A1628;
    --bg-card: #0F1E33;
    --bg-card-2: #132940;
    --line: rgb(61, 169, 252);
    --line-strong: rgba(61, 169, 252, 0.28);
    --text: #E7F0F8;
    --text-dim: #8FA5BD;
    --text-faint: #54708F;
    --blue: #3DA9FC;
    --green: #8FD14F;
    --teal: #4FE0B0;
    --glow: 0.7;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(6, 14, 30, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(143, 209, 79, 0.3));
}

.nav-brand-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-txt b {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.nav-brand-txt span {
    font-size: 16px;
    color: var(--text-faint);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 18px;
    color: var(--text-dim);
    transition: color .15s;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--teal);
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--green), #6FB834);
    color: #0A1628;
    border: 1px solid rgba(143, 209, 79, 0.5);
    box-shadow: 0 0 0 1px rgba(143, 209, 79, 0.15), 0 4px 14px rgba(143, 209, 79, 0.25);
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(143, 209, 79, 0.3), 0 6px 20px rgba(143, 209, 79, 0.4);
}

/* ---------- NAV DROPDOWN ---------- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    color: var(--text-dim);
    cursor: pointer;
    transition: color .15s;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
    color: var(--teal);
}

.nav-dropdown-caret {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dropdown.open .nav-dropdown-caret,
.nav-dropdown:hover .nav-dropdown-caret {
    transform: rotate(225deg) translateY(-2px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 200px;
    background: rgba(6, 14, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 6px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(61, 169, 252, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 200;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--teal);
    border-radius: 8px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: var(--teal);
    background: rgba(61, 169, 252, 0.08);
}

.nav-dropdown-menu a.nav-dd-active {
    color: var(--teal);
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--line);
    margin: 4px 6px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 960px;
    padding: 80px 48px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 45%, rgba(61, 169, 252, 0.12), transparent 70%),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(143, 209, 79, 0.08), transparent 70%),
        var(--bg-deep);
}

/* ---------- APP STUDIO HERO ANIMATION ---------- */

.studio-wrap {
    position: relative;
    width: 100%;
    max-width: 1080px;
    height: 560px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(61, 169, 252, 0.16);
    pointer-events: none;
}

.studio-orbit-1 {
    width: 680px;
    height: 680px;
    animation: studio-spin 44s linear infinite;
}

.studio-orbit-2 {
    width: 480px;
    height: 480px;
    border-color: rgba(143, 209, 79, 0.14);
    animation: studio-spin 34s linear infinite reverse;
}

.studio-main {
    position: relative;
    z-index: 4;
    width: min(680px, 92vw);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(19, 41, 64, 0.94), rgba(6, 14, 30, 0.96));
    border: 1px solid rgba(61, 169, 252, 0.34);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(61, 169, 252, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    animation: studio-float 7s ease-in-out infinite;
}

.studio-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            transparent 0%,
            transparent 38%,
            rgba(79, 224, 176, 0.16) 48%,
            rgba(61, 169, 252, 0.12) 52%,
            transparent 62%,
            transparent 100%);
    transform: translateX(-120%);
    animation: studio-scan 5.5s ease-in-out infinite;
    pointer-events: none;
}

.studio-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(6, 14, 30, 0.72);
    border-bottom: 1px solid var(--line);
}

.studio-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--text-faint);
}

.studio-topbar span:nth-child(1) {
    background: #ED6A5E;
}

.studio-topbar span:nth-child(2) {
    background: #F5BD4F;
}

.studio-topbar span:nth-child(3) {
    background: #61C554;
}

.studio-topbar b {
    margin-left: auto;
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 500;
}

.studio-body {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 330px;
}

.studio-sidebar {
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    background: rgba(10, 22, 40, 0.7);
}

.studio-sidebar span {
    display: block;
    height: 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(143, 209, 79, 0.18);
}

.studio-sidebar span:nth-child(2) {
    width: 70%;
    background: rgba(61, 169, 252, 0.2);
}

.studio-sidebar span:nth-child(3) {
    width: 85%;
    background: rgba(79, 224, 176, 0.18);
}

.studio-preview {
    padding: 28px;
}

.preview-hero {
    height: 130px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 25% 30%, rgba(143, 209, 79, 0.45), transparent 28%),
        linear-gradient(135deg, rgba(61, 169, 252, 0.28), rgba(79, 224, 176, 0.12));
    border: 1px solid rgba(61, 169, 252, 0.24);
    position: relative;
    overflow: hidden;
}

.preview-hero::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -40px;
    top: -30px;
    border-radius: 40px;
    background: rgba(143, 209, 79, 0.16);
    animation: morph-shape 6s ease-in-out infinite;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.preview-grid span {
    height: 92px;
    border-radius: 16px;
    background: rgba(15, 30, 51, 0.9);
    border: 1px solid var(--line);
    animation: card-rise 5s ease-in-out infinite;
}

.preview-grid span:nth-child(2) {
    animation-delay: .4s;
}

.preview-grid span:nth-child(3) {
    animation-delay: .8s;
}

.build-line {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    color: var(--text-dim);
    background: rgba(6, 14, 30, 0.55);
    font-size: 12px;
}

.prompt {
    color: var(--green);
}

.build-caret {
    display: inline-block;
    width: 7px;
    height: 13px;
    margin-left: 4px;
    background: var(--green);
    vertical-align: middle;
    animation: blink 1s steps(2) infinite;
}

.studio-card {
    position: absolute;
    z-index: 5;
    width: 220px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(10, 22, 40, 0.78);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(18px);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(61, 169, 252, 0.08);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.studio-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(143, 209, 79, 0.55);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.45),
        0 0 34px rgba(143, 209, 79, 0.14);
}

.studio-card-left {
    left: 0;
    top: 80px;
    animation: studio-float-small 6.5s ease-in-out infinite;
}

.studio-card-right {
    right: 0;
    bottom: 80px;
    animation: studio-float-small 7.5s ease-in-out infinite reverse;
}

.studio-label {
    display: block;
    color: var(--green);
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.mini-browser {
    height: 90px;
    border-radius: 12px;
    background: rgba(15, 30, 51, 0.9);
    border: 1px solid var(--line);
    padding: 14px;
    margin-bottom: 12px;
}

.mini-browser div {
    height: 8px;
    border-radius: 999px;
    background: rgba(61, 169, 252, 0.24);
    margin-bottom: 10px;
}

.mini-browser div:nth-child(2) {
    width: 72%;
    background: rgba(79, 224, 176, 0.2);
}

.mini-browser div:nth-child(3) {
    width: 46%;
    background: rgba(143, 209, 79, 0.24);
}

.studio-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.5;
}

.flow-step {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(15, 30, 51, 0.9);
    border: 1px solid rgba(61, 169, 252, 0.18);
    color: var(--text);
    font-size: 13px;
}

.flow-connector {
    width: 2px;
    height: 22px;
    margin: 4px auto;
    background: linear-gradient(var(--blue), var(--green));
    box-shadow: 0 0 12px rgba(79, 224, 176, 0.5);
    animation: flow-pulse 1.7s ease-in-out infinite;
}

@keyframes studio-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes studio-float {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }

    50% {
        transform: translateY(-14px) rotateX(1.5deg);
    }
}

@keyframes studio-float-small {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes studio-scan {

    0%,
    35% {
        transform: translateX(-120%);
    }

    65%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes morph-shape {

    0%,
    100% {
        border-radius: 40px;
        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius: 50%;
        transform: rotate(12deg) scale(1.08);
    }
}

@keyframes card-rise {

    0%,
    100% {
        transform: translateY(0);
        border-color: var(--line);
    }

    50% {
        transform: translateY(-5px);
        border-color: rgba(143, 209, 79, 0.3);
    }
}

@keyframes flow-pulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scaleY(0.75);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 900px) {
    .studio-wrap {
        height: 640px;
        margin-top: 50px;
    }

    .studio-main {
        width: 100%;
    }

    .studio-card {
        width: 190px;
    }

    .studio-card-left {
        left: 10px;
        top: 20px;
    }

    .studio-card-right {
        right: 10px;
        bottom: 20px;
    }

    .studio-body {
        grid-template-columns: 84px 1fr;
    }
}

@media (max-width: 640px) {
    .studio-wrap {
        height: auto;
        display: grid;
        gap: 18px;
    }

    .studio-main,
    .studio-card {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .studio-orbit {
        display: none;
    }

    .studio-body {
        grid-template-columns: 1fr;
    }

    .studio-sidebar {
        display: none;
    }
}

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.24em;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(15, 30, 51, 0.6);
    border: 1px solid var(--line-strong);
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 40px;
}

.hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    position: relative;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.02;
    text-align: center;
    max-width: 1100px;
    margin-top: 22px;
    font-weight: 600;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    position: relative;
    font-size: 18px;
    color: var(--text-dim);
    text-align: center;
    max-width: 680px;
    margin-top: 22px;
    line-height: 1.6;
}

.hero-ctas {
    position: relative;
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

.btn-primary {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--green), #6FB834);
    color: #0A1628;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(143, 209, 79, 0.35), 0 8px 28px rgba(143, 209, 79, 0.3);
    transition: transform .15s, box-shadow .15s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(143, 209, 79, 0.5), 0 10px 32px rgba(143, 209, 79, 0.5);
}

.btn-ghost {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: 10px;
    background: rgba(15, 30, 51, 0.6);
    color: var(--text);
    border: 1px solid var(--line-strong);
    cursor: pointer;
    transition: background .15s, border-color .15s;
}

.btn-ghost:hover {
    background: rgba(15, 30, 51, 0.9);
    border-color: rgba(61, 169, 252, 0.5);
}

/* ---------- METRICS STRIP ---------- */
.metrics {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metric {
    padding: 0 32px;
    border-left: 1px solid var(--line);
}

.metric:first-child {
    border-left: none;
}

.metric-num {
    font-family: 'Space Grotesk';
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.metric-num em {
    font-style: normal;
    color: var(--green);
}

.metric-label {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* ---------- SECTION ---------- */
section {
    padding: 120px 48px;
    position: relative;
}

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

.sec-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 56px;
}

.sec-kicker {
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--green);
    letter-spacing: 0.26em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sec-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--green);
}

.sec-title {
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.08;
    max-width: 780px;
}

.sec-title em {
    font-style: normal;
    color: var(--blue);
}

.sec-sub {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 620px;
    margin-top: 18px;
}

/* ---------- SERVICES GRID ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.svc {
    background: var(--bg-panel);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    transition: background .2s;
    cursor: pointer;
    position: relative;
}

.svc:hover {
    background: var(--bg-card);
}

.svc::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(143, 209, 79, 0.08));
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

.svc:hover::after {
    opacity: 1;
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(61, 169, 252, 0.15), rgba(143, 209, 79, 0.1));
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.svc-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.5;
}

.svc:hover .svc-icon svg {
    stroke: var(--green);
}

.svc-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--text-faint);
}

.svc h3 {
    font-family: 'Space Grotesk';
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.svc p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.svc-tags {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.svc-tag {
    font-family: 'JetBrains Mono';
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(61, 169, 252, 0.1);
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

/* ---------- PROCESS ---------- */
.process {
    background: linear-gradient(180deg, transparent, rgba(61, 169, 252, 0.03));
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.proc-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), var(--line-strong), transparent);
}

.proc {
    position: relative;
    padding-top: 72px;
}

.proc-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-panel);
    border: 1.5px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk';
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
    box-shadow: 0 0 0 4px var(--bg-deep);
}

.proc h4 {
    font-family: 'Space Grotesk';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.proc p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ---------- FEATURE ROW ---------- */
.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-copy h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.12;
    margin-bottom: 20px;
}

.feature-copy h2 em {
    font-style: normal;
    color: var(--green);
}

.feature-copy p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
}

.feature-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(143, 209, 79, 0.15);
    border: 1px solid rgba(143, 209, 79, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
}

.feature-item b {
    font-weight: 600;
}

.feature-item span {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    margin-top: 3px;
}

.terminal {
    background: var(--bg-panel);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(61, 169, 252, 0.08);
}

.term-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
}

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

.term-bar .mono {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-faint);
}

.term-body {
    padding: 24px 20px;
    font-family: 'JetBrains Mono';
    font-size: 13px;
    line-height: 1.9;
}

.term-body .prompt {
    color: var(--green);
}

.term-body .key {
    color: var(--blue);
}

.term-body .str {
    color: var(--teal);
}

.term-body .dim {
    color: var(--text-faint);
}

.term-body .ok {
    color: var(--green);
}

.term-body .warn {
    color: #F5C16C;
}

.caret {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--green);
    vertical-align: middle;
    animation: blink 1s steps(2) infinite;
}

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

/* ---------- LOGO GARDEN / TRUST ---------- */
/*----.trust {
    padding: 60px 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.trust-logo {
    font-family: 'Space Grotesk';
    font-weight: 600;
    font-size: 18px;
    color: var(--text-faint);
    letter-spacing: -0.01em;
    opacity: 0.85;
}

/* ---------- TESTIMONIAL ---------- */
/*.quote-card {
    background: linear-gradient(160deg, var(--bg-panel), var(--bg-card));
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    padding: 56px 60px;
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(143, 209, 79, 0.1), transparent 70%);
    pointer-events: none;
}

.quote-mark {
    font-family: 'Space Grotesk';
    font-size: 80px;
    line-height: 0.8;
    color: var(--green);
    margin-bottom: 12px;
}

.quote-card blockquote {
    font-family: 'Space Grotesk';
    font-size: 28px;
    line-height: 1.35;
    max-width: 880px;
    font-weight: 500;
}

.quote-card cite {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 32px;
    font-style: normal;
}

.quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk';
    font-weight: 600;
    color: #0A1628;
}

.quote-meta b {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.quote-meta span {
    font-size: 13px;
    color: var(--text-dim);
}----*/

/* ---------- CTA ---------- */
.cta-big {
    position: relative;
    background: linear-gradient(160deg, #0E2340, #081527);
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-big::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(61, 169, 252, 0.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(143, 209, 79, 0.14), transparent 50%);
    pointer-events: none;
}

.cta-big h2 {
    position: relative;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    max-width: 760px;
    margin: 0 auto 16px;
}

.cta-big p {
    position: relative;
    font-size: 17px;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-big .btn-primary {
    font-size: 15px;
    padding: 16px 30px;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 80px 48px 40px;
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.foot-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.foot-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.foot-brand img {
    height: 44px;
    width: 44px;
    object-fit: contain;
}

.foot-brand b {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 16px;
}

.foot-brand span {
    font-size: 10px;
    color: var(--text-faint);
    letter-spacing: 0.2em;
}

.foot-blurb {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 320px;
}

.foot-col h5 {
    font-family: 'Space Grotesk';
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.foot-col a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    padding: 6px 0;
    transition: color .15s;
}

.foot-col a:hover {
    color: var(--green);
}

.foot-bar {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-faint);
}


@media (max-width: 900px) {
    .nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 20px;
    }

    .hero {
        padding: 40px 20px 80px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .proc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics {
        grid-template-columns: 1fr 1fr;
    }

    .metric:nth-child(3) {
        border-left: none;
    }

    .diagram-wrap {
        aspect-ratio: auto;
        height: 560px;
    }
}

/* ---------- BENTO BOX ---------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 16px;
    margin-top: 48px;
}

.bento-card {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(61, 169, 252, 0.1);
}

.bento-card-header {
    font-family: 'Space Grotesk';
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-card-header::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 2px;
    opacity: 0.6;
}

.bento-card-1 {
    grid-column: span 2;
}

.bento-card-2 {
    grid-column: span 1;
}

.bento-card-3 {
    grid-column: span 1;
}

.bento-card-4 {
    grid-column: span 1;
}

.bento-card-5 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card-6 {
    grid-column: span 1;
}

.bento-card-7 {
    grid-column: span 1;
}

.bento-card-8 {
    grid-column: span 1;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}