/* ═══════════════════════════════════════════════
   ZEUSS PORTFOLIO — styles.css
   ═══════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────── */
:root {
    --primary:   #7c6af7;
    --secondary: #a78bfa;
    --accent:    #f472b6;
    --deep:      #0a0a12;
    --surface:   #12121e;
    --card:      #1a1a2e;
    --border:    rgba(255,255,255,0.07);
    --text-dim:  rgba(255,255,255,0.45);
    --glow:      rgba(124,106,247,0.35);
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--deep);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Star Canvas ────────────────────────────── */
#starsCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}





/* ── Page Loader ────────────────────────────── */
#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pageLoader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* 4-pointed diamond spinner */
.loader-diamond {
    position: relative;
    width: 64px;
    height: 64px;
}

.loader-diamond span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-diamond span::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: diamondPulse 1.6s ease-in-out infinite;
}

.loader-diamond span:nth-child(1) { transform: rotate(0deg) translateY(-26px); }
.loader-diamond span:nth-child(2) { transform: rotate(90deg) translateY(-26px); }
.loader-diamond span:nth-child(3) { transform: rotate(180deg) translateY(-26px); }
.loader-diamond span:nth-child(4) { transform: rotate(270deg) translateY(-26px); }

.loader-diamond span:nth-child(1)::before { animation-delay: 0s; }
.loader-diamond span:nth-child(2)::before { animation-delay: 0.4s; }
.loader-diamond span:nth-child(3)::before { animation-delay: 0.8s; }
.loader-diamond span:nth-child(4)::before { animation-delay: 1.2s; }

@keyframes diamondPulse {
    0%, 100% { opacity: 0.2; transform: scale(0.7); }
    50%       { opacity: 1;   transform: scale(1.4);
                background: var(--accent); }
}

/* Loader name */
.loader-name {
    display: flex;
    gap: 2px;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    background: linear-gradient(120deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-name span {
    display: inline-block;
    animation: letterPop 1.6s ease-in-out infinite;
}
.loader-name span:nth-child(1) { animation-delay: 0.0s; }
.loader-name span:nth-child(2) { animation-delay: 0.1s; }
.loader-name span:nth-child(3) { animation-delay: 0.2s; }
.loader-name span:nth-child(4) { animation-delay: 0.3s; }
.loader-name span:nth-child(5) { animation-delay: 0.4s; }

@keyframes letterPop {
    0%, 100% { transform: translateY(0); }
    30%       { transform: translateY(-6px); }
    60%       { transform: translateY(2px); }
}

/* Loader progress bar */
.loader-bar-wrap {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px;
    animation: loaderFill 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes loaderFill {
    0%   { width: 0%; }
    60%  { width: 80%; }
    100% { width: 100%; }
}


/* ── Navbar ─────────────────────────────────── */
.nav-glass {
    background: rgba(10,10,18,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px;
    transition: width 0.3s ease;
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124,106,247,0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(124,106,247,0.5);
}

/* Scroll progress line */
.nav-progress-line {
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.1s linear;
}

/* Scrolled state */
#mainNav.scrolled .nav-glass {
    background: rgba(10,10,18,0.95);
}


/* ── Sidebar ────────────────────────────────── */
.sidebar-glass {
    background: rgba(18,18,30,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(124,106,247,0.12);
    color: #fff;
    transform: translateX(3px);
}



/* ── WhatsApp FAB ───────────────────────────── */
#whatsappFab {
    background: linear-gradient(135deg, #7c6af7, #a855f7);
    box-shadow: 0 8px 30px rgba(124,106,247,0.4);
}

#whatsappFab:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(124,106,247,0.6);
}

.fab-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(124,106,247,0.5);
    animation: fabRing 2.5s ease-in-out infinite;
}

@keyframes fabRing {
    0%, 100% { transform: scale(1);   opacity: 0.6; }
    50%       { transform: scale(1.2); opacity: 0; }
}


/* ── Flash Toasts ───────────────────────────── */
.flash-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation-duration: 0.4s;
}

.flash-success {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.3);
    color: #6ee7b7;
}
.flash-error {
    background: rgba(244,63,94,0.15);
    border-color: rgba(244,63,94,0.3);
    color: #fda4af;
}
.flash-info {
    background: rgba(124,106,247,0.15);
    border-color: rgba(124,106,247,0.3);
    color: #c4b5fd;
}


/* ── Gradient Text ──────────────────────────── */
.gradient-text {
    background: linear-gradient(120deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}


/* ── Section & Layout ───────────────────────── */
section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

main { min-height: calc(100vh - 72px); }


/* ── Scroll Animations ──────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
                transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

.animate-on-scroll.from-left  { transform: translateX(-28px); }
.animate-on-scroll.from-right { transform: translateX(28px); }
.animate-on-scroll.from-left.visible,
.animate-on-scroll.from-right.visible { transform: none; }


/* ── Cards ──────────────────────────────────── */
.project-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(26,26,46,0.7);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124,106,247,0.3);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3),
                0 0 0 1px rgba(124,106,247,0.15),
                inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Glass card variant */
.glass-card {
    background: rgba(26,26,46,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
}


/* ── Gallery ────────────────────────────────── */
.project-gallery { position: relative; overflow: hidden; }

.gallery-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.gallery-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.project-gallery:hover .gallery-nav { opacity: 1; }

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255,255,255,0.25);
    transition: background 0.3s ease, width 0.3s ease;
}

.gallery-dot.active {
    background: white;
    width: 18px;
}

.project-gallery img {
    cursor: pointer;
    transition: transform 0.35s ease;
}

.project-gallery img:hover { transform: scale(1.03); }


/* ── Skills Progress ────────────────────────── */
.skill-progress {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.skill-progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}


/* ── Buttons ────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 6px 24px rgba(124,106,247,0.35);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(124,106,247,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid rgba(124,106,247,0.4);
    color: var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(124,106,247,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Glow button effect */
.glow-on-hover {
    position: relative;
    overflow: hidden;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.18) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.glow-on-hover:hover::after { transform: scale(2); }


/* ── Filter Buttons ─────────────────────────── */
.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.5);
    transition: all 0.25s ease;
    cursor: pointer;
}

.filter-btn:hover { color: white; background: rgba(255,255,255,0.09); }

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(124,106,247,0.3);
}


/* ── Fullscreen Modal ───────────────────────── */
#fullscreenModal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#fullscreenModal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#fullscreenModal.flex { opacity: 1; visibility: visible; }

#fullscreenModal img {
    transition: transform 0.3s ease;
    transform: scale(0.95);
}

#fullscreenModal.flex img { transform: scale(1); }


/* ── Tooltips ───────────────────────────────── */
.skill-item { position: relative; }

.skill-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.9rem;
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 20;
}

.skill-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}


/* ── Footer Icons ───────────────────────────── */
.footer-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.footer-icon:hover {
    background: rgba(124,106,247,0.15);
    border-color: rgba(124,106,247,0.4);
    color: var(--secondary);
    transform: translateY(-2px);
}


/* ── Scrollbar ──────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 99px;
}


/* ── Focus ──────────────────────────────────── */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}


/* ── Skill Icon ─────────────────────────────── */
.skill-icon {
    font-size: 2rem;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── Utility ────────────────────────────────── */
.hover-scale { transition: transform 0.2s ease; }
.hover-scale:hover { transform: scale(1.04); }

.bg-noise {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
}


/* ════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ════════════════════════════════════════════════ */

/* ── Decorative Blobs ──────────────────────────── */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.blob-1 {
    width: 600px; height: 600px;
    background: rgba(124,106,247,0.12);
    top: -150px; left: -200px;
}
.blob-2 {
    width: 500px; height: 500px;
    background: rgba(244,114,182,0.09);
    bottom: -100px; right: -150px;
}
.blob-3 {
    width: 400px; height: 400px;
    background: rgba(167,139,250,0.1);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}

/* ── Section Labels & Titles ───────────────────── */
.section-label {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: #fff;
    line-height: 1.15;
}

/* Decorative side lines */
.section-line-left {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 120px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    border-radius: 99px;
}
.section-line-right {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 120px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    border-radius: 99px;
}

/* ── Hero ──────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    background: rgba(124,106,247,0.12);
    border: 1px solid rgba(124,106,247,0.25);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.01em;
}

.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.35; }
}

.stat-chip {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.scroll-caret {
    width: 10px; height: 10px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: caretBounce 1.6s ease-in-out infinite;
}
@keyframes caretBounce {
    0%,100% { transform: rotate(45deg) translate(0,0); opacity:0.4; }
    50%      { transform: rotate(45deg) translate(3px,3px); opacity:1; }
}

/* ── About Cards ───────────────────────────────── */
.about-card {
    padding: 1.4rem;
    border-radius: 14px;
    background: rgba(26,26,46,0.6);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.about-card:hover {
    border-color: rgba(124,106,247,0.3);
    transform: translateY(-3px);
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}
.social-pill:hover {
    background: rgba(124,106,247,0.12);
    border-color: rgba(124,106,247,0.3);
    color: var(--secondary);
    transform: translateY(-1px);
}

/* ── Project Tags & Links ──────────────────────── */
.tech-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    background: rgba(124,106,247,0.12);
    color: var(--secondary);
    border: 1px solid rgba(124,106,247,0.2);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s ease;
}
.project-link:hover { color: var(--secondary); }

/* ── Pricing Card ──────────────────────────────── */
.pricing-card {
    border-radius: 16px;
    background: rgba(26,26,46,0.6);
    border: 1px solid var(--border);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124,106,247,0.3);
    box-shadow: 0 20px 48px rgba(0,0,0,0.25), 0 0 0 1px rgba(124,106,247,0.1);
}
.pricing-card-inner {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.25rem;
}
.pricing-currency {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
}
.pricing-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Forms ─────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.2); }

.form-input:focus {
    border-color: rgba(124,106,247,0.5);
    background: rgba(124,106,247,0.05);
    box-shadow: 0 0 0 3px rgba(124,106,247,0.12);
}

.input-icon-wrap { position: relative; }

.input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
    pointer-events: none;
}

.form-input.pl-10 { padding-left: 2.4rem; }

/* ── Auth Icon Ring ─────────────────────────────── */
.auth-icon-ring {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(124,106,247,0.1);
    border: 1px solid rgba(124,106,247,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(124,106,247,0.15);
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%,100% { box-shadow: 0 0 20px rgba(124,106,247,0.15); }
    50%      { box-shadow: 0 0 40px rgba(124,106,247,0.3); }
}

/* ── OTP Boxes ──────────────────────────────────── */
.otp-boxes {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.otp-box {
    width: 44px; height: 54px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    cursor: text;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.otp-box[data-filled="1"] {
    border-color: rgba(124,106,247,0.5);
    background: rgba(124,106,247,0.08);
    color: var(--secondary);
}