/* ==========================================================================
   QUANTUM NEXUS - COMING SOON TEASER STYLESHEET
   Solar Eclipse Corona, Deep Starfield & Apple Pro Typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    --bg-void: #000000;
    --text-white: #ffffff;
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --border-focus: #ffffff;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   BASE RESET & LAYOUT
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Starfield Canvas */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.cosmic-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   HEADER NAVIGATION (Official Website Navbar Branding)
   -------------------------------------------------------------------------- */
.teaser-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    transition: opacity 0.2s ease;
}

.nav-brand:hover {
    opacity: 0.85;
}

.nav-brand-logo-slot {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.lang-switch-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 99px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--text-white);
}

.lang-divider {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--border-subtle);
}

/* --------------------------------------------------------------------------
   MAIN TEASER CONTAINER
   -------------------------------------------------------------------------- */
.teaser-main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
}

.teaser-container {
    width: 100%;
    max-width: 840px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --------------------------------------------------------------------------
   SOLAR ECLIPSE LOGO STAGE
   -------------------------------------------------------------------------- */
.eclipse-stage {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    perspective: 1000px;
    cursor: pointer;
}

/* Radiant Solar Corona behind logo */
.sun-corona {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(220, 240, 255, 0.85) 30%, 
        rgba(100, 180, 255, 0.4) 55%, 
        rgba(0, 140, 255, 0.15) 75%, 
        rgba(0, 0, 0, 0) 100%
    );
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.8), 
                0 0 120px rgba(0, 190, 255, 0.5), 
                0 0 180px rgba(0, 120, 255, 0.25);
    filter: blur(12px);
    animation: coronaBreathe 6s infinite ease-in-out alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes coronaBreathe {
    0% { transform: scale(0.95); opacity: 0.85; filter: blur(10px); }
    100% { transform: scale(1.08); opacity: 1; filter: blur(14px); }
}

/* Anamorphic Horizontal Sci-Fi Flare Streak */
.sun-flare-anamorphic {
    position: absolute;
    width: 580px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(0, 240, 255, 0.5) 25%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(0, 240, 255, 0.5) 75%, 
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 2;
    animation: flareGlint 4s infinite ease-in-out alternate;
}

@keyframes flareGlint {
    0% { opacity: 0.65; transform: scaleX(0.9); }
    100% { opacity: 0.95; transform: scaleX(1.1); }
}

/* Diamond Ring Eclipse Glint */
.sun-flare-diamond {
    position: absolute;
    top: 24px;
    right: 38px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 25px 8px rgba(255, 255, 255, 0.95), 0 0 60px 18px rgba(0, 240, 255, 0.8);
    pointer-events: none;
    z-index: 3;
    animation: diamondTwinkle 3s infinite ease-in-out alternate;
}

@keyframes diamondTwinkle {
    0% { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

.sun-glow-outer {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(0, 160, 255, 0.03) 50%, rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Dark Celestial Logo Wrap Eclipsing the Sun */
.eclipse-logo-wrap {
    position: relative;
    width: 155px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.eclipse-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 45px rgba(0, 200, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.eclipse-stage:hover .eclipse-logo-wrap {
    transform: scale(1.06);
}

.eclipse-stage:hover .eclipse-logo {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 240, 255, 0.5));
}

/* --------------------------------------------------------------------------
   TEASER COPYWRITING & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.teaser-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Cinematic Page Entrance Animation */
.animate-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: opacity, transform;
}

.teaser-title.animate-reveal { animation-delay: 0.15s; }
.teaser-subtitle.animate-reveal { animation-delay: 0.3s; }
.climax-banner.animate-reveal { animation-delay: 0.45s; }
.signup-module.animate-reveal { animation-delay: 0.6s; }

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.teaser-title {
    font-size: clamp(2.8rem, 5.8vw, 4.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 40%, rgba(200, 210, 225, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    max-width: 720px;
}

.teaser-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 36px;
}

/* Climax Banner */
.climax-banner {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.climax-text {
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
}

.climax-glow-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 50%, rgba(255, 255, 255, 0));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    border-radius: 99px;
}

/* --------------------------------------------------------------------------
   SIGNUP NOTIFICATION FORM
   -------------------------------------------------------------------------- */
.signup-module {
    width: 100%;
    max-width: 500px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.signup-input-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(12, 12, 16, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 99px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: var(--transition-smooth);
}

.signup-input-wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 255, 255, 0.15);
}

.signup-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-white);
    padding-right: 12px;
}

.signup-input::placeholder {
    color: var(--text-muted);
}

.signup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 22px;
    border-radius: 99px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.signup-btn:hover {
    background: #e4e4e7;
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.signup-btn:active {
    transform: scale(0.97);
}

.btn-arrow {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.signup-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-check-icon {
    width: 16px;
    height: 16px;
    display: none;
    stroke: #000000;
}

.signup-btn.success {
    background: #00ffaa;
    color: #000000;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.6);
}

.signup-btn.success .btn-arrow {
    display: none;
}

.signup-btn.success .btn-check-icon {
    display: inline-block;
    animation: checkPop 0.35s cubic-bezier(0.17, 0.89, 0.32, 1.49) forwards;
}

@keyframes checkPop {
    0% { transform: scale(0.2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.signup-feedback {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: #00ffaa;
    min-height: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup-feedback.show {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   TACTICAL ORBITAL CLEARANCE & GAMIFIED CONSENT
   -------------------------------------------------------------------------- */
.orbital-clearance-wrap {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.clearance-toggle {
    width: 100%;
    max-width: 480px;
    background: rgba(14, 14, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.clearance-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transition: left 0.6s ease;
}

.clearance-toggle:hover::before {
    left: 100%;
}

.clearance-toggle:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(20, 20, 28, 0.9);
    transform: translateY(-1px);
}

/* Active / Granted State */
.clearance-toggle.granted {
    border-color: rgba(0, 255, 170, 0.45);
    background: rgba(0, 255, 170, 0.06);
    box-shadow: 0 0 25px rgba(0, 255, 170, 0.15), inset 0 0 15px rgba(0, 255, 170, 0.05);
}

/* Warning Flash State */
.clearance-toggle.warning-flash {
    border-color: #ff3366 !important;
    background: rgba(255, 51, 102, 0.12) !important;
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.4) !important;
    animation: shakeWarn 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeWarn {
    10%, 90% { transform: translate3d(-2px, 0, 0); }
    20%, 80% { transform: translate3d(3px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
    40%, 60% { transform: translate3d(3px, 0, 0); }
}

.clearance-indicator {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.clearance-toggle:hover .clearance-indicator {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.clearance-toggle.granted .clearance-indicator {
    background: #00ffaa;
    border-color: #00ffaa;
    box-shadow: 0 0 14px rgba(0, 255, 170, 0.6);
}

.clearance-icon-check {
    width: 14px;
    height: 14px;
    stroke: #000000;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.25s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

.clearance-toggle.granted .clearance-icon-check {
    opacity: 1;
    transform: scale(1);
}

.clearance-text-wrap {
    flex: 1;
}

.clearance-status-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.clearance-toggle.granted .clearance-status-label {
    color: #00ffaa;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.clearance-toggle.warning-flash .clearance-status-label {
    color: #ff3366;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.clearance-subtext {
    font-family: var(--font-main);
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.35;
    margin-top: 2px;
}

.clearance-link-text {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.2s ease;
}

.clearance-link-text:hover {
    color: #00ffaa;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.teaser-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-link-btn {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 2px 4px;
}

.footer-link-btn:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-dot {
    color: var(--border-subtle);
    font-size: 0.75rem;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   PRIVACY MODAL (Apple Pro Dark Glassmorphism)
   -------------------------------------------------------------------------- */
.privacy-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.privacy-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.privacy-modal-container {
    width: 100%;
    max-width: 720px;
    max-height: 84vh;
    background: rgba(16, 16, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.privacy-modal-backdrop.open .privacy-modal-container {
    transform: translateY(0) scale(1);
}

.privacy-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.privacy-modal-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.privacy-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.privacy-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: scale(1.05);
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.privacy-modal-body h3 {
    color: #ffffff;
    font-size: 0.98rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    margin-bottom: 12px;
}

.privacy-modal-body ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.privacy-modal-body li {
    margin-bottom: 6px;
}

.privacy-modal-body strong {
    color: #ffffff;
}

.privacy-modal-body a {
    color: #58a6ff;
    text-decoration: underline;
}

.privacy-modal-footer {
    padding: 14px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
}

.privacy-modal-extlink {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-modal-extlink:hover {
    color: #ffffff;
}

.privacy-modal-btn-close {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 18px;
    border-radius: 99px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.privacy-modal-btn-close:hover {
    background: #e4e4e7;
}

/* --------------------------------------------------------------------------
   DATA ERASURE / UNSUBSCRIBE MODAL (Crimson Security Cyberpunk Theme)
   -------------------------------------------------------------------------- */
.delete-modal-container {
    max-width: 520px;
    border-color: rgba(255, 60, 100, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 51, 102, 0.12);
}

.delete-modal-header {
    border-bottom-color: rgba(255, 60, 100, 0.15);
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff3366;
    background: rgba(255, 51, 102, 0.12);
    border: 1px solid rgba(255, 51, 102, 0.3);
    padding: 2px 8px;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

.delete-modal-body {
    padding: 26px 24px;
}

.delete-modal-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.55;
}

.delete-input-group {
    margin-bottom: 16px;
}

.delete-input {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0 16px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
    transition: var(--transition-smooth);
}

.delete-input:focus {
    border-color: rgba(255, 51, 102, 0.6);
    background: rgba(255, 51, 102, 0.04);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}

.delete-status-msg {
    min-height: 24px;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 8px;
    display: none;
    line-height: 1.45;
}

.delete-status-msg.show {
    display: block;
}

.delete-status-msg.success {
    color: #00ffaa;
    background: rgba(0, 255, 170, 0.08);
    border: 1px solid rgba(0, 255, 170, 0.25);
}

.delete-status-msg.error {
    color: #ff4d6d;
    background: rgba(255, 77, 109, 0.08);
    border: 1px solid rgba(255, 77, 109, 0.25);
}

.delete-status-msg.info {
    color: #58a6ff;
    background: rgba(88, 166, 255, 0.08);
    border: 1px solid rgba(88, 166, 255, 0.25);
}

.delete-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.btn-confirm-delete {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    background: linear-gradient(135deg, #ff2e63 0%, #d81159 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 46, 99, 0.35);
    transition: all 0.25s ease;
}

.btn-confirm-delete:hover {
    background: linear-gradient(135deg, #ff477e 0%, #ea1b68 100%);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(255, 46, 99, 0.5);
}

.btn-confirm-delete:active {
    transform: translateY(1px);
}

.btn-confirm-delete:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-cancel-delete {
    height: 46px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel-delete:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.footer-delete-btn:hover {
    color: #ff4d6d;
}

/* --------------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
    .teaser-header {
        padding: 14px 16px;
    }
    
    .nav-brand span {
        font-size: 0.82rem;
        letter-spacing: 0.12em;
    }

    .lang-switch-wrap {
        padding: 4px 10px;
    }

    .lang-btn {
        font-size: 0.76rem;
    }

    .teaser-container {
        padding: 0 16px;
    }

    .eclipse-stage {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }

    .sun-corona {
        width: 150px;
        height: 150px;
    }

    .sun-flare-anamorphic {
        width: 280px;
    }

    .eclipse-logo-wrap,
    .eclipse-logo {
        width: 105px !important;
        height: 105px !important;
        max-width: 105px !important;
        max-height: 105px !important;
    }

    .teaser-title {
        font-size: clamp(1.85rem, 8.5vw, 2.4rem);
        margin-bottom: 12px;
    }

    .teaser-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .climax-banner {
        margin-bottom: 28px;
    }

    .climax-text {
        font-size: clamp(1.1rem, 5.2vw, 1.4rem);
    }

    .signup-input-wrap {
        flex-direction: column;
        background: rgba(14, 14, 18, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    }

    .signup-input {
        width: 100%;
        height: 46px;
        text-align: center;
        font-size: 16px; /* Prevents iOS Safari auto-zoom */
        padding: 0 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: #ffffff;
    }

    .signup-input:focus {
        border-color: rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.07);
    }

    .signup-btn {
        width: 100%;
        height: 48px;
        justify-content: center;
        border-radius: 10px;
        font-size: 0.95rem;
    }
}
