:root {
    --bg: #030405;
    --bg-soft: #06100b;
    --surface: rgba(7, 16, 11, 0.78);
    --surface-2: rgba(10, 26, 16, 0.82);
    --glass: rgba(255, 255, 255, 0.055);
    --line: rgba(0, 255, 102, 0.24);
    --line-strong: rgba(0, 255, 102, 0.54);
    --text: #f3f6f1;
    --muted: #a8b5ad;
    --primary: #00ff41;
    --primary-2: #00d9ff;
    --warning: #f8c76a;
    --danger: #ff2e57;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --font: "Segoe UI", Arial, sans-serif;
    --mono: "Courier New", Courier, monospace;
    --mx: 50vw;
    --my: 30vh;
    --scroll-progress: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(0, 255, 65, 0.2), transparent 32rem),
        radial-gradient(circle at 82% 8%, rgba(0, 217, 255, 0.1), transparent 28rem),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62)),
        var(--bg);
    font-family: var(--font);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    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: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
        radial-gradient(circle at center, transparent 45%, rgba(0, 0, 0, 0.42));
    mix-blend-mode: screen;
    opacity: 0.2;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #020302;
}

::-webkit-scrollbar-thumb {
    border: 3px solid #020302;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

::selection {
    color: #03150c;
    background: var(--primary);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.matrix-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.12;
    mix-blend-mode: screen;
}

.cursor-glow {
    position: fixed;
    left: var(--mx);
    top: var(--my);
    z-index: 0;
    width: clamp(280px, 38vw, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    background:
        radial-gradient(circle, rgba(0, 255, 65, 0.18) 0%, rgba(0, 255, 65, 0.1) 28%, rgba(0, 217, 255, 0.07) 44%, transparent 70%);
    filter: blur(5px);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.22s ease;
    will-change: left, top, opacity;
}

.cursor-glow.is-active {
    opacity: 1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: rgba(0, 255, 65, 0.08);
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(var(--scroll-progress));
    transform-origin: left;
    background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--primary));
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.72);
}

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    gap: 16px;
    color: var(--primary);
    background:
        radial-gradient(circle at center, rgba(0, 255, 65, 0.14), transparent 20rem),
        rgba(3, 4, 5, 0.96);
    font-family: var(--mono);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.42s ease, visibility 0.42s ease;
    animation: loaderAutoHide 0.5s ease 1.8s forwards;
}

.loading-screen::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 118px;
    aspect-ratio: 1;
    margin: -59px 0 0 -59px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 58%, rgba(0, 255, 65, 0.92), transparent 78% 100%);
    filter: drop-shadow(0 0 18px rgba(0, 255, 65, 0.58));
    animation: bootRing 1.25s linear infinite;
    pointer-events: none;
}

.js .loading-screen {
    display: grid;
}

.loading-screen img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 22px rgba(0, 255, 65, 0.72));
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loading-screen span {
    position: relative;
    z-index: 1;
}

.loading-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.78; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes loaderAutoHide {
    to { opacity: 0; visibility: hidden; }
}

@keyframes bootRing {
    to { transform: rotate(360deg); }
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 255, 65, 0.18);
    background: rgba(3, 4, 5, 0.72);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.main-nav.scrolled {
    border-color: rgba(0, 255, 65, 0.42);
    background: rgba(3, 4, 5, 0.9);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--mono);
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(0, 255, 65, 0.36);
    border-radius: 6px;
    background: rgba(0, 255, 65, 0.045);
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.16);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
}

.brand-mark::before {
    border: 1px solid rgba(0, 255, 65, 0.65);
    border-radius: inherit;
    opacity: 0.42;
    animation: logoBoot 3.8s ease-in-out infinite;
}

.brand-mark::after {
    transform: translateX(-140%);
    background: linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, 0.42), transparent 62% 100%);
    animation: logoSweep 4.6s ease-in-out infinite;
}

.brand-mark img {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.75));
}

@keyframes logoBoot {
    0%, 100% { clip-path: inset(0 0 74% 0); opacity: 0.24; }
    45% { clip-path: inset(0); opacity: 0.82; }
    70% { clip-path: inset(74% 0 0 0); opacity: 0.34; }
}

@keyframes logoSweep {
    0%, 62% { transform: translateX(-140%); opacity: 0; }
    72% { opacity: 0.72; }
    86%, 100% { transform: translateX(140%); opacity: 0; }
}

.brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.root-tag {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 10px;
    color: var(--muted);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.7);
    transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 22px rgba(0, 255, 102, 0.12);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: var(--surface);
    cursor: pointer;
}

.hero,
.page-hero,
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 92px 22px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: 48px;
}

.hero::before {
    content: "WEB_DESIGN // SEO_SCHEMA // ETHICAL_SECURITY // ROOT_BRAND";
    position: absolute;
    right: 22px;
    bottom: 76px;
    max-width: 680px;
    color: rgba(0, 255, 65, 0.07);
    font-family: var(--mono);
    font-size: clamp(1.8rem, 5.8vw, 5rem);
    line-height: 0.9;
    font-weight: 900;
    text-align: right;
    z-index: 0;
    pointer-events: none;
}

.hero-content,
.hero-panel {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: 0;
}

h1 {
    max-width: 860px;
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 4vw, 3.05rem);
    line-height: 1.09;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.hero h1,
.page-hero h1 {
    text-shadow:
        0 0 18px rgba(0, 255, 65, 0.26),
        0.035em 0 0 rgba(255, 0, 60, 0.28),
        -0.018em -0.028em 0 rgba(0, 255, 65, 0.3);
}

.glitch-text {
    position: relative;
    display: inline-block;
    width: auto;
    max-width: 100%;
    min-height: 1em;
    overflow: visible;
    white-space: normal;
    color: var(--text);
    font-weight: 900;
    animation: neonSweep 4.2s ease-in-out 1.45s infinite;
}

.type-cursor {
    display: inline-block;
    width: 0.08em;
    height: 0.9em;
    margin-left: 0.08em;
    background: var(--primary);
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.65);
    vertical-align: -0.08em;
    animation: cursorBlink 0.85s step-end infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
}

.glitch-text::before {
    color: var(--danger);
    transform: translate(2px, 0);
    clip-path: inset(0 0 58% 0);
    animation: modernGlitch 5.8s infinite;
}

.glitch-text::after {
    color: var(--primary);
    transform: translate(-2px, 0);
    clip-path: inset(52% 0 0 0);
    animation: modernGlitch 5.8s infinite reverse;
}

.glitch-text.is-typing::before,
.glitch-text.is-typing::after {
    animation: none;
    opacity: 0;
}

@keyframes neonSweep {
    0%, 100% {
        color: var(--text);
        text-shadow:
            0 0 18px rgba(0, 255, 65, 0.26),
            0.035em 0 0 rgba(255, 0, 60, 0.28),
            -0.018em -0.028em 0 rgba(0, 255, 65, 0.3);
    }
    50% {
        color: #d9fff0;
        text-shadow:
            0 0 30px rgba(0, 255, 65, 0.58),
            0 0 62px rgba(0, 255, 65, 0.22),
            0.035em 0 0 rgba(255, 0, 60, 0.38),
            -0.018em -0.028em 0 rgba(0, 255, 65, 0.48);
    }
}

@keyframes cursorBlink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

@keyframes modernGlitch {
    0%, 82%, 100% { opacity: 0; transform: translate(0); }
    84% { opacity: 0.5; transform: translate(2px, -1px); }
    86% { opacity: 0.18; transform: translate(-2px, 1px); }
    88% { opacity: 0.44; transform: translate(1px, 0); }
    90% { opacity: 0; transform: translate(0); }
}

.hero-copy,
.page-hero p,
.section-heading,
.founder-copy,
.site-build-card p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.06rem;
}

.hero-actions,
.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -40% -18%;
    z-index: 0;
    transform: translateX(-115%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), rgba(0, 255, 65, 0.42), transparent);
    opacity: 0;
    transition: transform 0.48s ease, opacity 0.22s ease;
    pointer-events: none;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: calc(var(--radius) - 1px);
    border: 1px solid rgba(0, 255, 65, 0.72);
    opacity: 0;
    box-shadow: inset 0 0 18px rgba(0, 217, 255, 0.12), 0 0 16px rgba(0, 255, 65, 0.22);
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.btn > i {
    position: relative;
    z-index: 1;
}

.btn.primary {
    color: #06110d;
    background: linear-gradient(135deg, var(--primary), #7bff9e);
    border-color: transparent;
    box-shadow: 0 0 24px rgba(0, 255, 65, 0.22);
}

.btn.secondary {
    color: var(--text);
    background: rgba(0, 255, 65, 0.04);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(0, 255, 102, 0.22);
    border-color: var(--line-strong);
}

.btn:hover::before {
    transform: translateX(115%) skewX(-18deg);
    opacity: 1;
}

.btn:hover::after {
    opacity: 0.9;
}

.btn:disabled {
    cursor: wait;
    opacity: 0.78;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-strip span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 900;
}

.hero-panel,
.card,
.terminal-container,
.contact-card,
.contact-form,
.report-card,
.project-card,
.blog-card,
.profile-card,
.stats-grid {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(0, 255, 65, 0.08), rgba(0, 0, 0, 0.38)),
        linear-gradient(135deg, rgba(0, 255, 65, 0.04), rgba(0, 217, 255, 0.03));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    padding: 22px;
}

.panel-header,
.metric-row,
.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.panel-header {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.86rem;
}

.kali-panel {
    overflow: hidden;
}

.dragon-mark {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 260px;
    margin: 24px 0;
    border: 1px dashed rgba(0, 255, 65, 0.32);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, transparent 44%, rgba(0, 255, 65, 0.16) 45% 55%, transparent 56%),
        radial-gradient(circle, rgba(0, 255, 65, 0.18), transparent 68%);
    color: rgba(0, 255, 65, 0.84);
    text-align: center;
    text-shadow: 0 0 22px rgba(0, 255, 65, 0.8);
}

.kali-dragon {
    position: absolute;
    width: min(58%, 230px);
    opacity: 0.2;
    filter: drop-shadow(0 0 28px rgba(0, 255, 65, 0.9));
}

.dragon-mark span {
    position: relative;
    display: block;
    font-family: var(--mono);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
}

.dragon-mark strong {
    position: relative;
    display: block;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.28em;
}

.panel-log {
    display: grid;
    gap: 8px;
    margin: -6px 0 16px;
    font-family: var(--mono);
    font-size: 0.78rem;
}

.panel-log span {
    position: relative;
    overflow: hidden;
    min-height: 24px;
    padding: 5px 9px 5px 22px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 6px;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(8px);
    animation: logBoot 4.8s ease infinite;
    animation-delay: calc(var(--i) * 0.34s + 0.4s);
}

.panel-log span::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.panel-log strong {
    float: right;
    color: var(--primary);
    font-weight: 900;
}

@keyframes logBoot {
    0%, 11% { opacity: 0; transform: translateY(8px); }
    20%, 82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.42; transform: translateY(0); }
}

.online {
    color: var(--primary);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--primary);
    box-shadow: 0 0 18px var(--primary);
}

.metric-row {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.metric-row strong {
    color: var(--text);
    text-align: right;
}

.section-heading {
    margin-bottom: 30px;
}

.service-grid,
.skill-grid,
.report-grid,
.project-grid,
.contact-grid,
.blog-grid,
.founder-grid {
    display: grid;
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-grid,
.report-grid,
.skill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-grid.full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-grid {
    grid-template-columns: 0.84fr 1.16fr;
    align-items: stretch;
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.card,
.contact-card,
.contact-form,
.report-card,
.project-card,
.blog-card,
.profile-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.card::before,
.report-card::before,
.project-card::before,
.blog-card::before,
.profile-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 65, 0.34), transparent 42%),
        linear-gradient(135deg, rgba(0, 255, 65, 0.18), rgba(0, 217, 255, 0.08));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.hero-panel::after,
.card::after,
.contact-card::after,
.contact-form::after,
.terminal-container::after,
.report-card::after,
.project-card::after,
.blog-card::after,
.profile-card::after,
.site-build-card::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    top: 0;
    z-index: 2;
    height: 82px;
    transform: translateY(-130%);
    background:
        linear-gradient(180deg, transparent, rgba(0, 255, 65, 0.2), transparent),
        linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.22), transparent);
    opacity: 0;
    pointer-events: none;
}

.card > *,
.contact-card > *,
.contact-form > *,
.terminal-container > *,
.report-card > *,
.project-card > *,
.blog-card > *,
.profile-card > * {
    position: relative;
    z-index: 1;
}

.card,
.report-card,
.project-card,
.blog-card,
.profile-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.card:hover,
.report-card:hover,
.project-card:hover,
.blog-card:hover,
.profile-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(0, 255, 65, 0.78);
    box-shadow:
        0 0 18px rgba(0, 255, 65, 0.32),
        0 0 52px rgba(0, 255, 65, 0.16),
        0 24px 70px rgba(0, 0, 0, 0.5);
}

.card:hover::before,
.report-card:hover::before,
.project-card:hover::before,
.blog-card:hover::before,
.profile-card:hover::before {
    opacity: 1;
}

.hero-panel:hover::after,
.card:hover::after,
.contact-card:hover::after,
.contact-form:hover::after,
.terminal-container:hover::after,
.report-card:hover::after,
.project-card:hover::after,
.blog-card:hover::after,
.profile-card:hover::after,
.site-build-card:hover::after {
    animation: scanLine 1.08s ease;
}

@keyframes scanLine {
    0% { opacity: 0; transform: translateY(-130%); }
    22% { opacity: 0.92; }
    100% { opacity: 0; transform: translateY(430%); }
}

.card i {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.card p,
.report-card p,
.project-card p,
.blog-card p {
    color: var(--muted);
}

.card ul {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.founder-section {
    padding-top: 64px;
}

.profile-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --photo-x: 0px;
    --photo-y: 0px;
    display: grid;
    align-content: start;
    gap: 20px;
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
}

.profile-card:hover {
    transform: perspective(900px) translateY(-5px) scale(1.01) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.profile-frame {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 0 38px rgba(0, 255, 65, 0.12), 0 0 34px rgba(0, 255, 65, 0.18);
}

.profile-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.14), transparent 62% 100%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.24s ease;
}

.profile-card.is-parallax .profile-frame img {
    transform: translate3d(var(--photo-x), var(--photo-y), 0) scale(1.035);
}

.role {
    color: var(--primary);
    font-family: var(--mono);
    font-weight: 900;
}

.founder-copy {
    align-self: center;
}

.site-build-section {
    padding-top: 40px;
}

.site-build-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.34);
    border-radius: var(--radius);
    padding: clamp(24px, 5vw, 44px);
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.22), transparent 18rem),
        linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 0, 0, 0.58));
    box-shadow:
        0 0 24px rgba(0, 255, 65, 0.22),
        0 24px 70px rgba(0, 0, 0, 0.48);
}

.site-build-card h2 {
    color: var(--text);
    text-shadow: 0.04em 0 rgba(255, 0, 60, 0.28), -0.02em 0 rgba(0, 255, 65, 0.36);
}

.dragon-stack {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
}

.dragon-stack::before {
    content: "OZCAN_LOGO";
    position: absolute;
    bottom: 8px;
    color: rgba(0, 255, 65, 0.24);
    font-family: var(--mono);
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
}

.dragon-stack img {
    position: relative;
    z-index: 1;
    width: min(88%, 320px);
    border-radius: 16px;
    opacity: 0.92;
    filter: drop-shadow(0 0 34px rgba(0, 255, 65, 0.55));
}

.featured-project {
    border-color: rgba(0, 255, 65, 0.7);
    box-shadow:
        0 0 20px rgba(0, 255, 65, 0.24),
        var(--shadow);
}

.project-preview {
    position: relative;
    min-height: 158px;
    margin: -4px -4px 22px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.22);
    border-radius: 7px;
    background:
        linear-gradient(135deg, rgba(0, 255, 65, 0.16), rgba(0, 217, 255, 0.08)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
        #06100b;
}

.project-preview::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background:
        linear-gradient(rgba(0, 255, 65, 0.18) 0 0) 20px 26px / 44% 8px no-repeat,
        linear-gradient(rgba(255, 255, 255, 0.14) 0 0) 20px 48px / 62% 7px no-repeat,
        linear-gradient(rgba(0, 217, 255, 0.14) 0 0) 20px 70px / 36% 7px no-repeat;
    animation: previewLines 4.8s ease-in-out infinite;
}

.project-preview::after {
    content: "deploy --watch";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    color: rgba(0, 255, 65, 0.72);
    font-family: var(--mono);
    font-size: 0.76rem;
    text-shadow: 0 0 14px rgba(0, 255, 65, 0.48);
    animation: previewTicker 4.2s steps(18, end) infinite;
}

.project-preview span {
    position: relative;
    z-index: 1;
    color: rgba(0, 255, 65, 0.86);
    font-family: var(--mono);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900;
    text-shadow: 0 0 24px rgba(0, 255, 65, 0.7);
    animation: previewPulse 3.4s ease-in-out infinite;
}

.preview-seo::after {
    content: "crawl > schema > rank";
}

.preview-security::after {
    content: "authorized scan: clean";
}

.preview-seo {
    background:
        radial-gradient(circle at 18% 24%, rgba(248, 199, 106, 0.18), transparent 12rem),
        linear-gradient(135deg, rgba(0, 217, 255, 0.16), rgba(0, 255, 65, 0.08)),
        #06100b;
}

.preview-security {
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 46, 87, 0.16), transparent 12rem),
        linear-gradient(135deg, rgba(0, 255, 65, 0.12), rgba(255, 46, 87, 0.07)),
        #06100b;
}

.preview-content {
    background:
        radial-gradient(circle at 50% 20%, rgba(0, 217, 255, 0.15), transparent 14rem),
        linear-gradient(135deg, rgba(0, 255, 65, 0.12), rgba(248, 199, 106, 0.08)),
        #06100b;
}

@keyframes previewLines {
    0%, 100% { background-position: 20px 26px, 20px 48px, 20px 70px; opacity: 0.82; }
    45% { background-position: 28px 26px, 34px 48px, 24px 70px; opacity: 1; }
}

@keyframes previewTicker {
    0%, 12% { clip-path: inset(0 100% 0 0); }
    54%, 86% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 0 100%); }
}

@keyframes previewPulse {
    0%, 100% { opacity: 0.78; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

.project-link-inline {
    display: inline-flex;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
    text-shadow: 0 0 16px rgba(0, 255, 65, 0.46);
}

.project-link-inline:hover {
    color: var(--text);
}

.terminal-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 22px;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-family: var(--mono);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--line);
}

.terminal-buttons span:nth-child(1) { background: var(--danger); }
.terminal-buttons span:nth-child(2) { background: var(--warning); }
.terminal-buttons span:nth-child(3) { background: var(--primary); }

.terminal-body {
    min-height: 330px;
    max-height: 420px;
    overflow: auto;
    padding: 18px;
    color: var(--primary);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 46, 87, 0.09), transparent 20rem),
        rgba(0, 0, 0, 0.44);
    font-family: var(--mono);
    font-size: 0.94rem;
}

.terminal-output {
    margin-bottom: 8px;
    white-space: pre-wrap;
}

.terminal-boot-log {
    position: relative;
    padding-left: 18px;
    color: rgba(0, 255, 65, 0.86);
    animation: terminalLineIn 0.38s ease both;
}

.terminal-boot-log::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--primary-2);
}

@keyframes terminalLineIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.terminal-input-line {
    display: flex;
    gap: 8px;
}

.terminal-prompt {
    color: var(--primary-2);
    white-space: nowrap;
}

.terminal-input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font: inherit;
}

.page-main {
    min-height: calc(100vh - 136px);
}

.page-hero {
    padding-bottom: 38px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
    align-items: start;
    padding-top: 30px;
}

.founder-detail {
    grid-template-columns: 0.78fr 1.22fr;
}

.split p {
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: hidden;
}

.stats-grid.compact {
    margin-top: 24px;
    box-shadow: none;
}

.stats-grid div {
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-grid strong {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--primary);
    font-family: var(--mono);
    font-size: 1.72rem;
    line-height: 1;
}

.stat-code {
    color: rgba(243, 246, 241, 0.68);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

[data-counter] {
    min-width: 3ch;
    text-align: right;
    text-shadow: 0 0 16px rgba(0, 255, 65, 0.48);
}

.stats-grid [data-counter] {
    color: var(--primary);
}

.stats-grid span {
    color: var(--muted);
}

.stats-grid .stat-code {
    color: rgba(243, 246, 241, 0.68);
}

.tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 5px 9px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 900;
}

.tag.high { color: #2b060b; background: #ff9aa5; }
.tag.medium { color: #231600; background: #f8d98e; }
.tag.low { color: #03150c; background: #91e9b7; }

.date,
.stack,
.form-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.project-top {
    margin-bottom: 22px;
    color: var(--primary);
    font-family: var(--mono);
    font-weight: 900;
}

.project-top i {
    font-size: 1.45rem;
}

.blog-card h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.blog-longform {
    padding-top: 40px;
}

.blog-index-section {
    padding-top: 38px;
}

.blog-index-grid {
    align-items: stretch;
}

.blog-index-card {
    display: grid;
    align-content: start;
    gap: 10px;
}

.blog-index-card h2 {
    margin-bottom: 4px;
    font-size: clamp(1.42rem, 2.4vw, 2rem);
    line-height: 1.18;
}

.blog-card-meta {
    margin: -4px 0 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.78rem;
}

.blog-idea {
    margin: 4px 0;
    padding: 12px 14px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: var(--radius);
    color: #d7e5dc;
    background: rgba(0, 0, 0, 0.22);
}

.blog-idea strong {
    color: var(--primary);
}

.blog-grid.full.longform-grid {
    grid-template-columns: minmax(0, 1fr);
}

.longform-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 38px);
}

.longform-card h2 {
    max-width: 860px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.15;
}

.longform-card h3 {
    margin: 28px 0 12px;
    color: var(--text);
    font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.longform-card p {
    font-size: 1.02rem;
}

.longform-card .article-lede {
    color: #d7e5dc;
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    line-height: 1.75;
}

.article-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 22px;
    padding-left: 20px;
    color: var(--muted);
}

.article-list li::marker {
    color: var(--primary);
}

.article-list strong {
    color: var(--text);
}

.article-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: #d7e5dc;
    background:
        linear-gradient(90deg, rgba(0, 255, 65, 0.12), rgba(0, 217, 255, 0.04)),
        rgba(0, 0, 0, 0.22);
    font-weight: 800;
}

.article-page {
    max-width: 980px;
    padding-top: 72px;
}

.article-page h1 {
    max-width: 940px;
    font-size: clamp(2.45rem, 5vw, 4.75rem);
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--primary);
    font-family: var(--mono);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
}

.article-back:hover {
    color: var(--text);
}

.article-summary {
    max-width: 860px;
    color: #d7e5dc;
    font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.article-summary strong {
    color: var(--primary);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 34px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 900;
}

.article-body {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(0, 255, 65, 0.08), rgba(0, 0, 0, 0.36)),
        rgba(0, 0, 0, 0.16);
    box-shadow: var(--shadow);
}

.article-body p {
    color: var(--muted);
    font-size: 1.05rem;
}

.article-body h2 {
    margin-top: 30px;
    color: var(--text);
    font-size: clamp(1.42rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.pricing-card h3 {
    color: var(--primary);
    font-family: var(--mono);
    font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
    background:
        linear-gradient(180deg, rgba(0, 255, 65, 0.08), rgba(0, 0, 0, 0.34)),
        rgba(0, 0, 0, 0.16);
}

.faq-list summary {
    color: var(--text);
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--muted);
}

.testimonial-card p:first-child {
    color: #d7e5dc;
    font-size: 1.05rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(0, 255, 65, 0.64);
    border-radius: 999px;
    color: #03150c;
    background: linear-gradient(135deg, #25d366, #7bff9e);
    box-shadow: 0 0 24px rgba(0, 255, 65, 0.26), var(--shadow);
    font-weight: 900;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}

.contact-card p {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.contact-card a {
    color: var(--text);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 65, 0.26), transparent 46%),
        linear-gradient(135deg, rgba(0, 255, 65, 0.14), rgba(0, 217, 255, 0.06));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.24);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid rgba(69, 224, 141, 0.34);
    border-color: var(--primary);
}

.contact-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--primary) 50%) right 18px center / 7px 7px no-repeat,
        linear-gradient(135deg, var(--primary) 50%, transparent 50%) right 12px center / 7px 7px no-repeat,
        rgba(0, 0, 0, 0.24);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.4em;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.form-status.is-success {
    color: var(--primary);
    transform: translateY(-1px);
    text-shadow: 0 0 14px rgba(0, 255, 65, 0.44);
}

.form-status.is-error {
    color: #ff9aa5;
}

.contact-form.is-sending {
    border-color: rgba(0, 217, 255, 0.5);
}

.contact-form.is-sent {
    border-color: rgba(0, 255, 65, 0.78);
    box-shadow:
        0 0 18px rgba(0, 255, 65, 0.3),
        0 24px 70px rgba(0, 0, 0, 0.44);
    animation: formSentPulse 0.85s ease;
}

.contact-form.is-sent::before {
    opacity: 1;
}

@keyframes formSentPulse {
    0% { transform: translateY(0); }
    42% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.site-footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 22px 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--mono);
    font-weight: 900;
}

.footer-brand img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.55));
}

.site-footer p {
    margin: 8px 0 0;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--primary);
    background: rgba(0, 255, 65, 0.04);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    transform: translateY(-2px);
    color: var(--text);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.22);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 1060px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-menu {
        position: absolute;
        top: 67px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(8, 16, 14, 0.98);
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        justify-content: center;
    }
}

@media (max-width: 880px) {
    .hero,
    .split,
    .contact-grid,
    .site-build-card,
    .founder-grid,
    .founder-detail {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 64px;
    }

    .service-grid,
    .skill-grid,
    .report-grid,
    .project-grid,
    .blog-grid,
    .blog-grid.full {
        grid-template-columns: 1fr;
    }

    .dragon-stack {
        min-height: 190px;
    }

    .profile-frame {
        width: min(100%, 280px);
    }
}

@media (max-width: 560px) {
    .hero,
    .page-hero,
    .section,
    .terminal-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-name {
        max-width: 210px;
    }

    h1 {
        font-size: 2.18rem;
        line-height: 1.08;
    }

    h2 {
        font-size: 1.85rem;
    }

    .glitch-text::before {
        transform: translate(1px, 0);
    }

    .glitch-text::after {
        transform: translate(-1px, 0);
    }

    .hero-actions,
    .section-cta,
    .site-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .metric-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .metric-row strong {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .matrix-canvas {
        display: none;
    }

    .cursor-glow {
        display: none;
    }
}
