@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: white;
    overflow-x: hidden;
}

/* Mesh Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 87, 34, 0.35), transparent 35%),
        radial-gradient(circle at 85% 90%, rgba(233, 30, 99, 0.35), transparent 35%),
        radial-gradient(circle at 50% 75%, rgba(255, 235, 59, 0.15), transparent 30%);
    filter: blur(80px);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s;
}

.logo { font-weight: 900; letter-spacing: 2px; font-size: 1.2rem; }

nav ul { display: flex; list-style: none; }

nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 5%;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 900;
    background: linear-gradient(to bottom, #ffffff 60%, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    background: white;
    color: black;
    padding: 4px 12px;
    font-weight: 900;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 15px;
    transform: rotate(-1deg);
}

.role {
    margin-top: 25px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 25px auto 0;
}

/* Cards Grid - The core of responsiveness */
.card-container, .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.content-section {
    padding: 80px 8%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glass-card, .contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s ease;
    text-decoration: none;
    color: white;
}

.glass-card:hover, .contact-card:hover {
    border-color: #ff4d4d;
    transform: translateY(-5px);
}

/* Tablet & Mobile Adjustments */
@media (max-width: 768px) {
    nav { padding: 1rem 5%; }
    .logo { font-size: 1rem; }
    nav ul li a { margin-left: 10px; font-size: 0.75rem; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    nav { flex-direction: column; gap: 10px; padding: 1rem; }
    nav ul li a { margin: 0 5px; }
    .hero { padding-top: 150px; }
}