@charset 'UTF-8';

:root {
    --bg: #050509;
    --bg-alt: #0b0b12;
    --accent: #ff6bcb;
    --accent-soft: rgba(255, 107, 203, 0.18);
    --text: #f5f5f7;
    --muted: #9a9aa5;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.6);
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Helvetica Neue", Arial, sans-serif;
}

html {
    background: radial-gradient(circle at top left, #151520 0, #050509 55%);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: radial-gradient(circle at top left, #151520 0, #050509 55%);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #14141f;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    bottom: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050509;
    z-index: -1;
}

main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 20px 80px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(18px);
}

.logo-mark {
    width: 18px;
    height: 18px;
    border-radius: 8px;
    background: conic-gradient(from 180deg,
            #ff6bcb,
            #ffd66b,
            #6b9bff,
            #ff6bcb);
    box-shadow: 0 0 18px rgba(255, 107, 203, 0.7);
}

.logo-text {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

nav a {
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6bcb, #ffd66b);
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

@media (max-width: 840px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    nav {
        font-size: 11px;
    }
}

/* Hero */
.hero {
    margin-bottom: 64px;
}

.hero-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(120deg, #ff6bcb, #ffd66b);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-sub {
    max-width: 480px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.hero-visual {
    width: 100%;
    height: 260px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, #ff6bcb 0, #050509 60%);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);
    background-size: 26px 26px;
    opacity: 0.4;
    mix-blend-mode: screen;
}

/* Section */
section {
    margin-bottom: 56px;
}

.section-title {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.text-block {
    max-width: 720px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.9;
}

/* Cards */
.info-card {
    padding: 16px 16px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: rgba(5, 5, 9, 0.85);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
}

.info-title {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text);
}

.info-body {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* Web Works Section */

.webworks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.webwork-card {
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: rgba(5, 5, 9, 0.85);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.webwork-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
}

.webwork-thumb {
    height: 140px;
    background: radial-gradient(circle at top left, #ff6bcb 0, #050509 60%);
    position: relative;
}

.webwork-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);
    background-size: 22px 22px;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.webwork-meta {
    padding: 10px 12px 12px;
}

.webwork-title {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

.webwork-tag {
    font-size: 11px;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 640px) {
    .webworks-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 11px;
    color: #6b6b76;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}