:root {
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(245, 245, 247, 0.08);
    /* Brighter glass for contrast */
    --glass-border: rgba(245, 245, 247, 0.15);
    --highlight: #00ffcc;
    --neon-purple: #bd00ff;
    --text-main: #F5F5F7;
    /* Apple-style off-white */
    --text-muted: #86868b;
    /* Apple-style muted text */
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    /* Google Antigravity-ish Gradient */
    background: linear-gradient(160deg,
            #000000 0%,
            #1c1c1e 25%,
            #1a1025 50%,
            #051820 75%,
            #000000 100%);
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Shapes */
.floating-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #4a00e0;
    top: 10%;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #8e2de2;
    bottom: 20%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #00ffcc;
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(20, 20, 20, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.cta-button {
    background: var(--text-main);
    color: black !important;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.03);
}

section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Hero Typography */
.brand-title {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #FFFFFF, var(--highlight), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

section h2 {
    font-size: 3.5rem;
    /* Previously h1 size was 4.5rem */
    line-height: 1.1;
    max-width: 1000px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF, #D0D0D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.highlight {
    background: linear-gradient(90deg, #8A2BE2, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Headers */
section>h2:not(.hero h2) {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-main);
    background: none;
    -webkit-text-fill-color: initial;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass:hover {
    transform: scale(1.02);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel */
.clients {
    min-height: 40vh;
    overflow: hidden;
    white-space: nowrap;
}

.carousel-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.client-item {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 4rem;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pricing - Single Card */
.pricing-cards {
    display: flex;
    justify-content: center;
}

.card {
    padding: 3.5rem;
    width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.card.featured {
    border-color: rgba(189, 0, 255, 0.5);
    box-shadow: 0 0 50px rgba(189, 0, 255, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-main);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-breakdown {
    font-size: 1.1rem;
    color: var(--highlight);
    margin-bottom: 2rem;
    font-weight: 500;
}

.features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    color: var(--text-muted);
}

.features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.card button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 14px;
    background: white;
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact */
.email-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.email-box:hover {
    background: rgba(255, 255, 255, 0.15);
}

#email-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.copy-hint {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--highlight);
}

.email-box:hover .copy-hint {
    opacity: 1;
}

.newsletter {
    max-width: 600px;
    margin: 4rem auto;
}

.newsletter input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--highlight);
}

.newsletter button {
    background: linear-gradient(90deg, #8A2BE2, #6a00ff);
    margin-top: 1rem;
    padding: 1.2rem;
}

/* Download Buttons */
.download-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn.firefox {
    background: linear-gradient(135deg, #ff6a00, #ee0a24);
    color: white;
}

.download-btn.chrome {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

/* --------------------------------------------------------- */
/* SHARED FORM STYLES (Register, Login, etc.)                */
/* --------------------------------------------------------- */

.container {
    max-width: 500px;
    margin: 8rem auto 4rem;
    /* Below fixed nav */
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--highlight);
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

button[type="submit"],
#verify-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #8A2BE2, #6a00ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Utilities */
.hidden {
    display: none !important;
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: rgba(0, 255, 127, 0.15);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.message.error {
    background: rgba(255, 50, 50, 0.15);
    color: #ff4d4d;
    border: 1px solid rgba(255, 50, 50, 0.3);
}

.desc {
    text-align: center;
    color: #aaa;
    margin-bottom: 2rem;
}

#otp-input {
    letter-spacing: 12px;
    font-weight: 700;
    color: var(--highlight);
}