:root {
    --bg-color: #0b0f19;
    --card-bg: #111827;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background-image: radial-gradient(circle at 50% -20%, #1e3a8a 0%, transparent 40%);
}

.container {
    max-width: 600px;
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-img-container {
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    padding: 4px;
    background-color: var(--card-bg);
    transition: var(--transition);
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    text-wrap: balance;
    line-height: 1.6;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    gap: 0.75rem;
}

.link-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    border: 1px solid rgba(59, 130, 246, 0.5);
    background-color: rgba(59, 130, 246, 0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    border-color: var(--accent-color);
    background-color: rgba(59, 130, 246, 0.2);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background-color: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.proof-of-work-section {
    margin-bottom: 3rem;
    text-align: left;
}

.proof-of-work-section h2 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    gap: 1.25rem;
}

.project-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    border-radius: 10px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.project-info {
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.coming-soon-badge {
    font-size: 0.65rem;
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--accent-color);
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.project-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.newsletter-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .input-group {
        flex-direction: column;
    }
}

input[type="email"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input[type="email"]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
    outline: none;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 0.875rem 1.5rem;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.75rem !important;
    color: #6b7280 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
}

.privacy-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.75rem;
    color: #4b5563;
}

.hidden {
    display: none !important;
}

.success-msg {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
