/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

:root {
    --color-text: #e2e8f0;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-bg: #0a0f1a;
    --color-bg-card: #111827;
    --color-bg-card-hover: #1a2235;
    --color-bg-elevated: #151d2e;
    --color-accent: #3b82f6;
    --color-accent-hover: #2563eb;
    --color-accent-soft: rgba(59,130,246,0.12);
    --color-accent-vivid: #60a5fa;
    --color-accent-glow: rgba(59,130,246,0.2);
    --color-border: rgba(255,255,255,0.06);
    --color-border-hover: rgba(255,255,255,0.12);
    --color-success: #10b981;
    --color-amber: #f59e0b;
    --color-purple: #a78bfa;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --max-width: 1140px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

/* === Particle Canvas === */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* === Waveform Dividers === */
.wave-divider {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.wave-canvas {
    width: 100%;
    height: 120px;
    display: block;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.04em;
}

a {
    color: var(--color-accent-vivid);
    text-decoration: none;
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* === Glow Card Mixin (reusable) === */
.glow-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(var(--gradient-angle), transparent 40%, var(--color-accent) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradient-rotate 3s linear infinite;
}

.glow-card:hover::before {
    opacity: 1;
}

.glow-card:hover {
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--color-accent-glow);
}

@keyframes gradient-rotate {
    to { --gradient-angle: 360deg; }
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s;
}

.nav.scrolled {
    background: rgba(10, 15, 26, 0.95);
}

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

.logo {
    text-decoration: none;
    color: #fff;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.logo-text strong { font-weight: 800; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-links a:hover { color: #fff; }

.nav-links .nav-cta {
    padding: 8px 22px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
}

.nav-links .nav-cta:hover { background: var(--color-accent-hover); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* === Parallax === */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* === Hero === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,15,26,0.6) 0%,
        rgba(10,15,26,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-avatar {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    perspective: 600px;
}

.hero-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 6px rgba(59,130,246,0.2), 0 0 80px rgba(59,130,246,0.15);
    object-fit: cover;
    animation: coin-spin 2s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

@keyframes coin-spin {
    0%   { transform: rotateY(0deg);   }
    20%  { transform: rotateY(720deg);  }
    40%  { transform: rotateY(1080deg); }
    60%  { transform: rotateY(1260deg); }
    80%  { transform: rotateY(1350deg); }
    90%  { transform: rotateY(1425deg); }
    100% { transform: rotateY(1440deg); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.accent {
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6, #60a5fa);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Proof Strip === */
.proof-section {
    background: var(--color-bg-elevated);
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.proof-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.proof-number,
.proof-number-static {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.proof-plus {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-left: -4px;
}

.proof-label {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 6px;
}

.proof-divider {
    width: 1px;
    height: 48px;
    background: var(--color-border);
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-accent-soft);
    color: var(--color-accent-vivid);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    border: 1px solid rgba(59,130,246,0.15);
}

.section-tag.light {
    background: rgba(255,255,255,0.05);
    color: var(--color-accent-vivid);
    border-color: rgba(255,255,255,0.08);
}

.section-sub {
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 12px auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--color-bg);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.3) 10%, rgba(59,130,246,0.3) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item.left {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.timeline-item.right {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-vivid);
    z-index: 2;
    box-shadow: 0 0 20px var(--color-accent-glow), 0 0 0 4px var(--color-bg);
}

.timeline-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-card:hover {
    border-color: rgba(59,130,246,0.3);
    box-shadow: 0 0 30px var(--color-accent-glow);
    transform: translateY(-2px);
}

.timeline-step {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-vivid);
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* === Parallax Dividers === */
.parallax-divider {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,26,0.85), rgba(10,15,26,0.75));
}

.divider-overlay-alt {
    background: linear-gradient(135deg, rgba(30,58,138,0.88), rgba(88,28,135,0.82), rgba(15,23,42,0.85));
}

.divider-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.divider-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.3;
    font-weight: 700;
}

/* ========================================
   DEV SECTION - BENTO GRID
   ======================================== */
.dev-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dev-card {
    padding: 32px 28px;
    overflow: hidden;
    position: relative;
}

/* Large keyword label instead of icon */
.dev-card .dev-card-icon {
    display: none;
}

.dev-card::after {
    content: attr(data-label);
    position: absolute;
    bottom: -12px;
    right: -8px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.025);
    letter-spacing: -0.04em;
    pointer-events: none;
    transition: color 0.4s;
}

.dev-card:hover::after {
    color: rgba(59,130,246,0.06);
}

.dev-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}

.dev-card h3::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 18px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-purple));
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

.dev-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* Tech strip inline */
.tech-strip-inline {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tech-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-badge:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-vivid);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--color-accent-glow);
    background: rgba(59,130,246,0.08);
}

/* ========================================
   HOSTING SECTION
   ======================================== */
.hosting-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
}

.hosting-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,26,0.92), rgba(17,24,39,0.95));
}

.hosting-content { position: relative; z-index: 2; }

.hosting-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.hosting-text .section-tag {
    background: rgba(59,130,246,0.12);
    color: var(--color-accent-vivid);
    border-color: rgba(59,130,246,0.2);
}

.hosting-text h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hosting-text p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.hosting-note {
    font-style: italic;
    color: var(--color-text-muted) !important;
    font-size: 0.9rem;
}

.hosting-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.hosting-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.hosting-feature:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}

.hosting-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.hosting-feature strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.hosting-feature span {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.hosting-features-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

/* ========================================
   CONSULTING SECTION
   ======================================== */
.consulting-section {
    padding: 100px 0;
    background: var(--color-bg-elevated);
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.consulting-card {
    padding: 36px 28px;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.consulting-icon { display: none; }

.consulting-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    position: relative;
}

.consulting-card h3::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 18px;
    background: linear-gradient(to bottom, var(--color-success), #34d399);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: middle;
}

.consulting-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ========================================
   NETWORK SECTION
   ======================================== */
.network-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.network-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.network-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.network-content h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
}

.network-content p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.network-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.network-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.network-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(16,185,129,0.4);
}

/* ========================================
   MY PROJECTS
   ======================================== */
.projects-section {
    padding: 100px 0;
    background: var(--color-bg-elevated);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.project-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.project-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-img img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-visit-btn {
    padding: 12px 28px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.project-visit-btn:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: scale(1.05);
}

.project-card-body { padding: 28px 24px; }

.project-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.project-badge.saas { background: rgba(16,185,129,0.12); color: var(--color-success); }
.project-badge.community { background: rgba(167,139,250,0.12); color: var(--color-purple); }
.project-badge.forum { background: var(--color-accent-soft); color: var(--color-accent-vivid); }

.project-card h3 { font-size: 1.3rem; margin-bottom: 4px; }

.project-tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 12px;
}

.project-card-body > p:last-of-type {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.project-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-accent-vivid);
    transition: color 0.2s;
}

.project-link:hover { color: #fff; }

.project-card-featured { grid-column: 1 / -1; }

.project-featured-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 100%;
}

.project-card-featured .project-card-img {
    height: 100%;
    min-height: 320px;
    border-radius: var(--radius) 0 0 var(--radius);
}

.project-card-featured .project-card-img img {
    border-radius: var(--radius) 0 0 var(--radius);
}

.project-card-featured .project-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-stats {
    display: flex;
    gap: 24px;
    margin: 20px 0 24px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.project-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-stat strong {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.project-stat span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ========================================
   EMERGING / SKILLS IN PROGRESS
   ======================================== */
.emerging-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.emerging-sub { color: var(--color-text-secondary) !important; }

.emerging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.emerging-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.emerging-card:hover {
    border-color: rgba(245,158,11,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(245,158,11,0.08);
}

.emerging-card-img {
    height: 220px;
    overflow: hidden;
}

.emerging-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.emerging-card:hover .emerging-card-img img { transform: scale(1.05); }

.emerging-card-body { padding: 28px 24px; }

.emerging-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245,158,11,0.12);
    color: var(--color-amber);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    border: 1px solid rgba(245,158,11,0.15);
}

.emerging-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.emerging-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* === Contact === */
.contact {
    padding: 100px 0;
    background: var(--color-bg-elevated);
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* === Footer === */
.footer {
    padding: 28px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

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

.footer-brand {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.footer-brand strong { font-weight: 800; }

.footer-copy {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* === Animations === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.dev-card.fade-up:nth-child(2) { transition-delay: 0.05s; }
.dev-card.fade-up:nth-child(3) { transition-delay: 0.10s; }
.dev-card.fade-up:nth-child(4) { transition-delay: 0.15s; }
.dev-card.fade-up:nth-child(5) { transition-delay: 0.20s; }
.dev-card.fade-up:nth-child(6) { transition-delay: 0.25s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1000px) {
    .timeline-item.left { padding-right: 0; padding-left: 64px; }
    .timeline-item.right { padding-left: 64px; }
    .timeline-line { left: 22px; }
    .timeline-dot { left: 22px; }
}

@media (max-width: 900px) {
    .network-layout,
    .hosting-layout { grid-template-columns: 1fr; gap: 40px; }

    .network-content h2,
    .hosting-text h2 { text-align: center; }

    .dev-grid { grid-template-columns: 1fr; }
    .consulting-grid { grid-template-columns: 1fr; }
    .emerging-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-featured-layout { grid-template-columns: 1fr; }

    .project-card-featured .project-card-img {
        min-height: 240px;
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .project-card-featured .project-card-img img {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .project-stats { flex-wrap: wrap; }
    .hosting-features { grid-template-columns: 1fr; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 200;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    }

    .nav-links.mobile-open { display: flex; }
    .nav-links a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--color-border); }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links .nav-cta { margin-top: 12px; text-align: center; justify-content: center; display: inline-block; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 768px) {
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.2rem; }
    .proof-strip { gap: 24px; }
    .proof-divider { display: none; }
    .divider-content h2 { font-size: 1.5rem; }

    .timeline-item.left,
    .timeline-item.right { padding-left: 56px; padding-right: 0; }
    .timeline-line { left: 18px; }
    .timeline-dot { left: 18px; width: 36px; height: 36px; }
    .timeline-dot svg { width: 16px; height: 16px; }

    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .proof-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .proof-divider { display: none; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
