@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --blurple: #5865f2;
    --blurple-hover: #4752c4;
    --bg-dark: #0b0c0e; 
    --bg-darker: #111214;
    --bg-card: rgba(30, 31, 34, 0.6);
    --text-muted: #949ba4;
    --text-white: #ffffff;
    --green: #23a559;
    --border: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body::before {
    content: "🛠 WEBSITE UPDATE, COMING SOON.";
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.1);
    border-bottom: 1px solid var(--border);
    color: var(--blurple);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    z-index: 1001;
    animation: globalPulse 3s ease-in-out infinite;
}

@keyframes globalPulse {
    0%, 100% { opacity: 1; background: rgba(88, 101, 242, 0.1); }
    50% { opacity: 0.7; background: rgba(88, 101, 242, 0.15); }
}

* { 
    box-sizing: border-box; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(88, 101, 242, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(88, 101, 242, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    background: rgba(11, 12, 14, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 800; 
    letter-spacing: -1.5px; 
    background: linear-gradient(to right, #fff, var(--blurple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active { 
    color: var(--text-white); 
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.container { 
    max-width: 1200px; 
    margin: auto; 
    padding: 80px 24px; 
}

.hero { 
    text-align: center; 
    margin-bottom: 120px; 
    padding-top: 40px;
}

.hero h1 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 24px; 
    font-weight: 800; 
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero p { 
    color: var(--text-muted); 
    font-size: 1.25rem; 
    max-width: 600px; 
    margin: auto; 
    font-weight: 400;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding-top: 20px;
}

.tier-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    overflow: hidden;
    animation: fadeUp 1s ease-out forwards;
}

.tier-card:hover { 
    transform: translateY(-12px); 
    border-color: rgba(88, 101, 242, 0.4); 
    box-shadow: 0 25px 50px rgba(88, 101, 242, 0.15);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    left: -150%;
}

.tier-card:hover::before {
    animation: shine 0.75s forwards;
}

.featured { 
    border: 1px solid var(--blurple); 
    background: rgba(88, 101, 242, 0.03);
    scale: 1.05; 
    z-index: 2;
}

.featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--blurple);
    z-index: -1;
    border-radius: 24px;
    opacity: 0.2;
    filter: blur(15px);
    animation: pulseGlow 4s infinite alternate;
}

.price-tag { 
    font-size: 3.5rem; 
    font-weight: 800; 
    margin: 15px 0; 
    letter-spacing: -2px;
}

.price-tag span { 
    font-size: 1rem; 
    color: var(--blurple); 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--blurple), #7289da);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    animation: float 3s ease-in-out infinite;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blurple);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 16px rgba(88, 101, 242, 0.25);
}

.btn:hover { 
    background: var(--blurple-hover); 
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(88, 101, 242, 0.35);
}

.btn:active { transform: scale(0.95); }

.form-container {
    max-width: 600px;
    margin: auto;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 28px;
    border: 1px solid var(--border);
}

input, textarea, select {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 12px;
    color: white;
    margin-top: 10px;
    font-size: 1rem;
}

input:focus, textarea:focus { 
    outline: none; 
    border-color: var(--blurple); 
    background: rgba(0, 0, 0, 0.4);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -15px); }
    50% { transform: translate(-50%, -22px); }
}

@keyframes shine {
    from { left: -100%; }
    to { left: 100%; }
}

@keyframes pulseGlow {
    0% { opacity: 0.1; filter: blur(10px); }
    100% { opacity: 0.3; filter: blur(20px); }
}

.pricing-grid .tier-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-grid .tier-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-grid .tier-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-grid .tier-card:nth-child(4) { animation-delay: 0.4s; }