:root {
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-700: #3f3f46;
    --zinc-500: #71717a;
    --zinc-400: #a1a1aa;
    --zinc-300: #d4d4d8;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --purple-500: #a855f7;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--zinc-950);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.main-wrapper {
    width: 1024px;
    height: auto;
    min-height: 768px;
    padding: 3rem;
    border: 8px solid var(--zinc-900);
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
}

.dot {
    color: var(--cyan-400);
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.subtitle {
    font-family: 'JetBrains Mono', monospace;
    color: var(--zinc-500);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pulse-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--zinc-700);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zinc-900);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--cyan-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cta-badge {
    background: var(--cyan-500);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: skewX(-12deg);
    font-size: 0.9rem;
}

/* Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    flex: 1;
}

.column-left { grid-column: span 4; display: flex; flex-direction: column; gap: 1.5rem; }
.column-center { grid-column: span 4; }
.column-right { grid-column: span 4; display: flex; flex-direction: column; gap: 1.5rem; }

/* Profile Frame */
.profile-frame {
    position: relative;
}

.gradient-glow {
    position: absolute;
    inset: -0.25rem;
    background: linear-gradient(to right, var(--cyan-500), var(--purple-500));
    border-radius: 1.5rem;
    filter: blur(10px);
    opacity: 0.25;
}

.image-container {
    position: relative;
    background: var(--zinc-900);
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--zinc-800);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(125%);
}

.location-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    background: var(--zinc-900);
    padding: 1rem;
    border-left: 4px solid var(--zinc-700);
}

.stat-box.cyan { border-left-color: var(--cyan-400); }
.stat-box.purple { border-left-color: var(--purple-500); }

.stat-box .label {
    display: block;
    color: var(--zinc-500);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.stat-box .value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* About Card */
.about-card {
    background: var(--zinc-900);
    padding: 2rem;
    border-radius: 2rem;
    height: 100%;
    border: 1px solid var(--zinc-800);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.line {
    width: 2rem;
    height: 2px;
}

.line.cyan { background: var(--cyan-400); }
.line.purple { background: var(--purple-500); }

.prose p {
    color: var(--zinc-300);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Hobbies */
.hobbies-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hobby-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--zinc-900);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--zinc-800);
    transition: border-color 0.3s;
}

.hobby-card:hover {
    border-color: var(--cyan-400);
}

.hobby-icon {
    width: 3rem;
    height: 3rem;
    background: var(--zinc-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hobby-name { font-weight: 700; }
.hobby-desc { font-size: 0.75rem; color: var(--zinc-500); }

.status-footer {
    margin-top: auto;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--zinc-800);
}

.status-label {
    display: block;
    font-size: 0.7rem;
    color: var(--zinc-400);
    margin-bottom: 0.25rem;
}

.status-text {
    font-weight: 700;
    font-size: 1rem;
}

/* Footer Section */
.footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zinc-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-info {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--zinc-700);
}

.family-credits {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--zinc-400);
    text-transform: uppercase;
}

.highlight {
    color: var(--zinc-300);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .main-wrapper { width: 100%; border: none; padding: 1.5rem; }
    .grid-container { grid-template-columns: 1fr; }
    .column-left, .column-center, .column-right { grid-column: span 1; }
    .main-title { font-size: 3.5rem; }
}