/* ============================================================
   WOLFY_527 — Furry VRChat Portfolio
   Dark Minimalist + Orange + Polygon Mesh Vibes
   ============================================================ */

:root {
    --orange:        #FF6B35;
    --orange-light:  #FF8F6A;
    --orange-glow:   rgba(255, 107, 53, 0.22);
    --cyan:          rgba(0, 220, 255, 0.7);

    --bg:            #0A0A0A;
    --bg-2:          #0D0D0D;
    --bg-card:       #141414;
    --bg-card-h:     #1C1C1C;
    --border:        #1E1E1E;
    --border-h:      #2E2E2E;
    --text:          #FFFFFF;
    --text-2:        #909090;
    --text-3:        #484848;

    --radius:        12px;
    --radius-lg:     20px;
    --radius-xl:     28px;
    --ease:          cubic-bezier(0.4, 0, 0.2, 1);
    --t:             0.3s;
    --t-slow:        0.7s;
    --shadow:        0 8px 40px rgba(0,0,0,0.55);
    --shadow-o:      0 8px 40px rgba(255,107,53,0.18);
    --nav-h:         72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
h1,h2,h3,h4 { line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; }
p   { color: var(--text-2); line-height: 1.75; }

/* ===== LOADER ===== */
#loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loader.out { opacity: 0; visibility: hidden; }

.ldr-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    text-align: center;
}

.ldr-svg { width: 100px; height: 90px; }

/* Outer triangle draws itself */
.ldr-tri-o {
    stroke: var(--orange); stroke-width: 2; fill: none;
    stroke-dasharray: 560; stroke-dashoffset: 560;
    animation: drawStroke 1.2s ease-out 0.1s forwards;
}
/* Inner triangle */
.ldr-tri-i {
    stroke: rgba(255,107,53,0.35); stroke-width: 1;
    fill: rgba(255,107,53,0.04);
    stroke-dasharray: 380; stroke-dashoffset: 380;
    animation: drawStroke 0.9s ease-out 0.9s forwards;
}
/* Internal lines */
.ldr-ln {
    stroke: rgba(255,107,53,0.2); stroke-width: 0.8;
    stroke-dasharray: 200; stroke-dashoffset: 200;
    animation: drawStroke 0.5s ease-out 1.5s forwards;
}
/* Center dot */
.ldr-dot {
    fill: var(--orange); opacity: 0;
    animation: fadeUp 0.4s ease 1.8s forwards;
}

@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes fadeUp    { to { opacity: 1; } }

.ldr-name {
    font-size: 1.8rem; font-weight: 900; letter-spacing: -0.03em;
    opacity: 0; animation: fadeUp 0.5s ease 1.0s forwards;
}
.ldr-name span { color: var(--orange); }

.ldr-status {
    font-size: 0.7rem; color: var(--text-3); letter-spacing: 0.12em;
    text-transform: uppercase; min-height: 1em;
    opacity: 0; animation: fadeUp 0.5s ease 1.1s forwards;
}

.ldr-bar {
    width: 180px; height: 2px; background: rgba(255,107,53,0.15);
    border-radius: 2px; overflow: hidden;
    opacity: 0; animation: fadeUp 0.5s ease 1.1s forwards;
}
.ldr-fill {
    height: 100%; background: var(--orange); border-radius: 2px; width: 0;
    animation: fillBar 1.8s ease 1.2s forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ===== UTILITIES ===== */
.accent { color: var(--orange); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS — WOW edition ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.92rem; border: none; cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
                color 0.3s var(--ease), border-color 0.3s var(--ease);
    white-space: nowrap;
    position: relative; overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -80%;
    width: 55%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}
.btn:hover::after { animation: shimmer 0.55s ease forwards; }
@keyframes shimmer { to { left: 130%; } }

/* Ripple */
.btn .ripple {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.28);
    transform: scale(0); animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* Primary — animated gradient + idle pulse glow */
.btn-primary {
    background: linear-gradient(110deg, #FF6B35 0%, #FF8C5A 50%, #FF6B35 100%);
    background-size: 200% 100%;
    color: #fff;
    animation: gradShift 3s ease infinite;
    box-shadow: 0 0 0 0 rgba(255,107,53,0);
}
@keyframes gradShift {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 28px rgba(255,107,53,0.45), 0 0 0 4px rgba(255,107,53,0.12);
}

.btn-ghost   { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--orange); border: 1px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ===== HERO SHOP PILLS ===== */
.hero-shops {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: wrap; margin-top: 28px;
}
.hero-shops-label {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-3);
    margin-right: 4px;
}
.shop-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-2); border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    transition: all var(--t) var(--ease);
    position: relative; overflow: hidden;
}
.shop-pill svg { width: 13px; height: 13px; flex-shrink: 0; }
.shop-pill::after {
    content: ''; position: absolute;
    top: -50%; left: -80%; width: 55%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg); pointer-events: none;
}
.shop-pill:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,53,0.07); transform: translateY(-2px); }
.shop-pill:hover::after { animation: shimmer 0.5s ease forwards; }

/* Featured pill — orange glow pulse */
.shop-pill--featured {
    border-color: rgba(255,107,53,0.5);
    color: var(--orange);
    background: rgba(255,107,53,0.06);
    animation: pillPulse 2.5s ease-in-out infinite;
}
.shop-pill--featured:hover { animation: none; }
@keyframes pillPulse {
    0%,100% { box-shadow: 0 0 0 0   rgba(255,107,53,0.0); }
    50%      { box-shadow: 0 0 0 6px rgba(255,107,53,0.15); }
}

.section-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-heading { margin-bottom: 52px; }
.section-heading h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text); margin-bottom: 10px; }
.section-heading p  { font-size: 1.05rem; }
.find-me-row { display: flex; align-items: center; gap: 20px; }
.find-me-logo { width: 72px; height: 72px; object-fit: contain; opacity: 0.9; }

/* ===== REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
[data-delay="1"].reveal { transition-delay: 0.12s; }
[data-delay="2"].reveal { transition-delay: 0.24s; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 1000;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.navbar.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.02em; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
    display: block; padding: 8px 14px; border-radius: 50px;
    color: var(--text-2); font-size: 0.88rem; font-weight: 500;
    transition: all var(--t) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--orange); }
.nav-cta { background: var(--orange); color: #fff; margin-left: 8px; font-weight: 600; }
.nav-cta:hover { background: var(--orange-light); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t) var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 998; opacity: 0; pointer-events: none; transition: opacity var(--t) var(--ease); }
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background: var(--bg-card); border-left: 1px solid var(--border); z-index: 999; padding: 96px 32px 40px; display: flex; flex-direction: column; gap: 40px; transition: right var(--t) var(--ease); }
.mobile-menu.active { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link { display: block; padding: 12px 0; font-size: 1.15rem; font-weight: 600; color: var(--text-2); border-bottom: 1px solid var(--border); transition: color var(--t) var(--ease); }
.mobile-link:hover { color: var(--orange); }
.mobile-shops { display: flex; flex-direction: column; gap: 10px; }
.mobile-shop-link { display: block; padding: 12px 20px; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; font-weight: 600; font-size: 0.9rem; color: var(--text-2); transition: all var(--t) var(--ease); }
.mobile-shop-link:hover { border-color: var(--orange); color: var(--orange); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    position: relative; overflow: hidden;
    padding: var(--nav-h) 24px 80px;
}

/* Canvas mesh background */
#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%; z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute; width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.09) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -55%);
    pointer-events: none; z-index: 1;
}

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

.hero-badge {
    display: inline-block; padding: 5px 16px;
    border: 1px solid rgba(255,107,53,0.45); border-radius: 50px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 24px;
}

/* Glitch animation on title */
.hero-title {
    font-size: clamp(3.5rem, 11vw, 7.5rem);
    font-weight: 900; line-height: 0.95; letter-spacing: -0.04em;
    margin-bottom: 20px;
    animation: glitch 7s infinite;
}
@keyframes glitch {
    0%,88%,100% { transform: none; text-shadow: none; }
    89%  { transform: skewX(-2deg) translateX(-3px); text-shadow:  3px 0 var(--cyan), -3px 0 var(--orange); }
    90%  { transform: skewX( 2deg) translateX( 3px); text-shadow: -3px 0 var(--cyan),  3px 0 var(--orange); }
    91%  { transform: none; text-shadow: none; }
    92%  { transform: translateX(-2px); text-shadow: 2px 0 var(--cyan); }
    93%  { transform: none; text-shadow: none; }
}

.hero-sub {
    font-size: 1.1rem; font-weight: 500; color: var(--text-2);
    letter-spacing: 0.03em; margin-bottom: 18px; min-height: 1.6em;
    display: flex; align-items: center; justify-content: center; gap: 2px;
}

.typing-cursor {
    color: var(--orange); font-weight: 300;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.hero-desc {
    font-size: 1rem; color: var(--text-3); max-width: 480px;
    margin: 0 auto 40px; line-height: 1.85;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Blender-style HUD */
.hero-hud {
    position: absolute; bottom: 80px; right: 28px; z-index: 2;
    display: flex; align-items: center; gap: 10px;
    background: rgba(10,10,10,0.6);
    border: 1px solid rgba(255,107,53,0.15);
    border-radius: 8px; padding: 8px 14px;
    backdrop-filter: blur(10px);
    font-family: 'Inter', monospace;
}
.hud-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.hud-lbl  { font-size: 0.55rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; }
.hud-val  { font-size: 0.75rem; font-weight: 700; color: var(--orange); }
.hud-sep  { width: 1px; height: 28px; background: var(--border); }

/* Scroll indicator */
.scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-3); font-size: 0.65rem; letter-spacing: 0.12em;
    text-transform: uppercase; z-index: 2;
}
.scroll-mouse { width: 22px; height: 34px; border: 1.5px solid var(--text-3); border-radius: 11px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 3px; height: 6px; background: var(--orange); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0%{opacity:1;transform:translateY(0);} 75%{opacity:0;transform:translateY(9px);} 100%{opacity:0;transform:translateY(0);} }

/* ===== DECORATIVE HEX ===== */
.deco-hex {
    position: absolute; pointer-events: none;
    opacity: 0.07;
    animation: hexSpin 40s linear infinite;
}
.deco-hex svg { width: 100%; height: 100%; }
.deco-hex-r { width: 380px; height: 380px; right: -120px; top: 50%; transform: translateY(-50%); }
.deco-hex-l { width: 300px; height: 300px; left: -100px; top: 40%; transform: translateY(-50%); animation-direction: reverse; }
@keyframes hexSpin { to { transform: translateY(-50%) rotate(360deg); } }
.deco-hex-l { animation: hexSpinL 50s linear infinite; }
@keyframes hexSpinL { from{transform:translateY(-50%) rotate(0deg);} to{transform:translateY(-50%) rotate(-360deg);} }

/* ===== ABOUT ===== */
.about { padding: 110px 0; position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: center; }
.about-visual { display: flex; flex-direction: column; align-items: center; gap: 36px; }

.avatar-wrapper { position: relative; width: 180px; height: 180px; }
.avatar-glow { position: absolute; inset: -24px; background: radial-gradient(circle, var(--orange-glow) 0%, transparent 68%); border-radius: 50%; animation: pulse 3.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.4;transform:scale(1);} 50%{opacity:0.9;transform:scale(1.08);} }

/* Rotating orbit ring */
.avatar-orbit {
    position: absolute; inset: -16px; border-radius: 50%;
    border: 1px dashed rgba(255,107,53,0.25);
    animation: orbitSpin 10s linear infinite;
    z-index: 0;
}
.avatar-orbit::after {
    content: '';
    position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); box-shadow: 0 0 8px var(--orange);
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.avatar-ring { position: relative; z-index: 1; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--orange); padding: 5px; }
.avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

.about-stats { display: flex; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 28px; width: 100%; }
.stat-item { flex: 1; text-align: center; }
.stat-num  { font-size: 1.4rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-lbl  { font-size: 0.7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-div  { width: 1px; height: 32px; background: var(--border); margin: 0 12px; flex-shrink: 0; }

.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 18px; }
.about-text p  { margin-bottom: 14px; }
.about-features { display: flex; flex-direction: column; gap: 10px; margin: 26px 0 28px; }
.about-features li { display: flex; align-items: center; gap: 12px; color: var(--text-2); font-size: 0.95rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* Tools row */
.tools-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tool-badge {
    padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
    background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.2);
    color: var(--orange); transition: all var(--t) var(--ease);
}
.tool-badge:hover { background: rgba(255,107,53,0.15); border-color: var(--orange); }

/* ===== FURALITY COLLECTION ===== */
.btn-furality {
    background: linear-gradient(110deg, #FF3CAC 0%, #FFE000 35%, #39FF14 65%, #00CFFF 100%);
    background-size: 250% 100%;
    color: #0F0E1A;
    font-weight: 800;
    animation: furShift 5s linear infinite;
    box-shadow: 0 4px 24px rgba(255,60,172,0.4);
}
.btn-furality:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,60,172,0.55), 0 0 0 4px rgba(255,224,0,0.2);
}
@keyframes furShift {
    0%   { background-position: 0%   50%; }
    100% { background-position: 250% 50%; }
}

/* Section */
.furality {
    position: relative; padding: 110px 0 100px; overflow: hidden;
    background: #14152A;
}

/* Background layers */
.fur-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.fur-rainbow-band {
    position: absolute; left: -5%; width: 110%; height: 180px;
    top: 50%; transform: translateY(-50%) rotate(-4deg);
    background: linear-gradient(to right,
        rgba(0,207,255,0.12),
        rgba(57,255,20,0.12),
        rgba(255,60,172,0.12),
        rgba(255,140,0,0.12),
        rgba(255,224,0,0.12)
    );
    filter: blur(2px);
}
.fur-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}

.fur-star {
    position: absolute; font-size: 1.4rem;
    animation: furSpin 8s linear infinite;
    opacity: 0.45;
}
.fur-star.s1 { top: 10%; left:  8%; color: #00CFFF; animation-duration: 9s; }
.fur-star.s2 { top: 15%; right: 12%; color: #FF3CAC; animation-duration: 7s; font-size: 1rem; }
.fur-star.s3 { bottom: 18%; left: 15%; color: #39FF14; animation-duration: 11s; }
.fur-star.s4 { bottom: 12%; right: 8%; color: #FFE000; animation-duration: 6s; font-size: 1rem; }
.fur-star.s5 { top: 50%; left: 50%; color: #FF8C00; animation-duration: 13s; font-size: 0.8rem; }
@keyframes furSpin { 0%,100% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.3); } }

/* Header */
.fur-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.fur-eyebrow {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em;
    text-transform: uppercase; color: #FFE000; margin-bottom: 14px;
}
.fur-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff;
    margin-bottom: 14px; line-height: 1.05; letter-spacing: -0.02em;
}
.fur-ultra {
    display: inline-block;
    background: linear-gradient(100deg, #00CFFF 0%, #39FF14 30%, #FF3CAC 60%, #FFE000 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.15em; letter-spacing: 0.04em;
}
.fur-sub { color: #94A3B8; font-size: 1rem; max-width: 460px; margin: 0 auto; }

/* Product grid */
.fur-products {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 14px; margin-bottom: 52px; position: relative; z-index: 1;
}

/* Card */
.fur-card {
    background: #1C1D38;
    border: 2px solid rgba(255,255,255,0.07);
    border-top: 3px solid var(--cc);
    border-radius: 18px; overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}
.fur-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 24px color-mix(in srgb, var(--cc) 40%, transparent);
    border-color: var(--cc);
}

/* Thumbnail */
.fur-thumb {
    position: relative; height: 175px;
    background: color-mix(in srgb, var(--cc) 10%, #0F1020);
    display: flex; align-items: center; justify-content: center;
}
.fur-halftone {
    position: absolute; inset: 0;
    background-image: radial-gradient(color-mix(in srgb, var(--cc) 25%, transparent) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.5;
}
.fur-product-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center; z-index: 1;
    display: block;
}
.fur-product-img[src=""], .fur-product-img:not([src]) { display: none; }

.fur-badge-type {
    position: absolute; top: 10px; left: 10px;
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
    background: var(--cc); color: #0F0E1A;
}

/* Info */
.fur-info { padding: 14px 16px 16px; }
.fur-info h4 { font-size: 0.93rem; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.25; }
.fur-info p  { font-size: 0.74rem; color: #8B93B0; line-height: 1.5; margin-bottom: 12px; }
.fur-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fur-poly {
    font-size: 0.65rem; font-weight: 700; font-family: monospace;
    color: var(--cc); background: color-mix(in srgb, var(--cc) 12%, transparent);
    padding: 2px 8px; border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--cc) 35%, transparent);
}
.fur-tag {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: #4A4F6A;
}

.fur-footer { text-align: center; position: relative; z-index: 1; }

@media (max-width: 1100px) { .fur-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .fur-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .fur-products { grid-template-columns: 1fr; } }

/* ===== SHOPS ===== */
.shops { padding: 110px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.shops-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.shop-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 32px;
    display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    will-change: transform;
}
.shop-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(145deg, rgba(255,107,53,0.07) 0%, transparent 55%);
    opacity: 0; transition: opacity var(--t) var(--ease); pointer-events: none;
}
.shop-card:hover { border-color: rgba(255,107,53,0.5); box-shadow: var(--shadow-o); }
.shop-card:hover::after { opacity: 1; }
.shop-card.featured { border-color: var(--orange); background: linear-gradient(160deg, rgba(255,107,53,0.07) 0%, var(--bg-card) 55%); }
.shop-card.featured::after { opacity: 1; }

.shop-featured-badge { position: absolute; top: 20px; right: 20px; background: var(--orange); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.shop-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.shop-card p  { font-size: 0.88rem; color: var(--text-2); flex: 1; margin-bottom: 28px; }
.shop-link { display: flex; align-items: center; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text); font-weight: 600; font-size: 0.88rem; margin-top: auto; transition: color var(--t) var(--ease); }
.shop-link svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t) var(--ease); }
.shop-link:hover { color: var(--orange); }
.shop-link:hover svg { transform: translateX(4px); }

/* ===== PORTFOLIO ===== */
.portfolio { padding: 110px 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 56px; }

.portfolio-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    will-change: transform;
}
.portfolio-card:hover { border-color: var(--border-h); box-shadow: var(--shadow); }

.portfolio-thumb { height: 175px; position: relative; overflow: hidden; }
.portfolio-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center top; z-index: 0;
    display: block;
}
.portfolio-img[src=""], .portfolio-img:not([src]) { display: none; }
.portfolio-thumb::after {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient( 45deg, transparent, transparent 22px, rgba(255,255,255,0.025) 22px, rgba(255,255,255,0.025) 23px),
        repeating-linear-gradient(-45deg, transparent, transparent 22px, rgba(255,255,255,0.015) 22px, rgba(255,255,255,0.015) 23px);
}
.grad-one   { background: linear-gradient(135deg,#180800 0%,#3D1500 55%,#FF6B35 100%); }
.grad-two   { background: linear-gradient(135deg,#081510 0%,#013020 55%,#FF9A3C 100%); }
.grad-three { background: linear-gradient(135deg,#0C0818 0%,#1F0050 55%,#FF6078 100%); }
.grad-four  { background: linear-gradient(135deg,#181200 0%,#3D3000 55%,#FFA520 100%); }
.grad-five  { background: linear-gradient(135deg,#180008 0%,#400015 55%,#FF5060 100%); }
.grad-six   { background: linear-gradient(135deg,#080818 0%,#100048 55%,#FF6B35 100%); }

.portfolio-overlay { position: absolute; top: 12px; left: 12px; z-index: 1; }
.portfolio-type { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(0,0,0,0.55); color: #fff; padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(10px); }

/* Polygon count badge — like Blender viewport stats */
.poly-badge {
    position: absolute; bottom: 10px; right: 10px; z-index: 1;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
    color: rgba(255,107,53,0.9); background: rgba(0,0,0,0.6);
    padding: 3px 8px; border-radius: 4px;
    border: 1px solid rgba(255,107,53,0.25);
    backdrop-filter: blur(8px); font-family: monospace;
}

.portfolio-info { padding: 16px 20px 20px; }
.portfolio-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.portfolio-info p  { font-size: 0.8rem; color: var(--text-3); }
.portfolio-footer  { text-align: center; }
.portfolio-footer p { margin-bottom: 20px; font-size: 0.95rem; }

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; }
.contact-social h3, .contact-shops h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.social-list { display: flex; flex-direction: column; gap: 8px; }
.social-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--t) var(--ease); }
.social-item:hover { border-color: var(--orange); background: var(--bg-card-h); }
.social-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,107,53,0.1); display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.social-icon svg { width: 17px; height: 17px; }
.social-info { flex: 1; display: flex; flex-direction: column; }
.social-name   { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.social-handle { font-size: 0.78rem; color: var(--text-3); }
.arrow { width: 15px; height: 15px; color: var(--text-3); flex-shrink: 0; transition: all var(--t) var(--ease); }
.social-item:hover .arrow { color: var(--orange); transform: translateX(3px); }

.cshop-list { display: flex; flex-direction: column; gap: 8px; }
.cshop-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 0.92rem; color: var(--text-2); transition: all var(--t) var(--ease); }
.cshop-item:hover { border-color: var(--orange); color: var(--orange); }
.cshop-item svg { width: 15px; height: 15px; margin-left: auto; flex-shrink: 0; transition: transform var(--t) var(--ease); }
.cshop-item:hover svg { transform: translateX(3px); }
.cdot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer-logo { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.025em; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-3); font-size: 0.88rem; transition: color var(--t) var(--ease); }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.83rem; color: var(--text-3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .shops-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .about-visual { order: -1; }
    .about-features li { justify-content: center; }
    .tools-row { justify-content: center; }
    .portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-hud { display: none; }
    .deco-hex { display: none; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .footer-bottom { justify-content: center; text-align: center; }
    .footer-nav { justify-content: center; }
}
@media (max-width: 520px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .about-stats { padding: 16px 18px; }
    .stat-div { margin: 0 8px; }
    .hero-actions { flex-direction: column; align-items: center; }
}
