/* ==========================================
   DYNAMIC ISLAND (Apple Style Toasts)
========================================== */
.dynamic-island {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-100px) scale(0.8);
    background: #000; color: #fff;
    padding: 12px 24px; border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 9999; opacity: 0; pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center; gap: 10px;
}
.dynamic-island.show {
    transform: translateX(-50%) translateY(0) scale(1); opacity: 1; pointer-events: auto;
}
.island-content { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
#island-icon { font-size: 1.2rem; }

/* ==========================================
   PROGRESS BAR
========================================== */
.progress-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 4px;
    background: rgba(255,255,255,0.1); z-index: 100;
}
.progress-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   TYPEWRITER & MORPHING STEPS
========================================== */
.morph-panel { transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s linear; }

.wizard-step, .onboard-slide { display: none; opacity: 0; transition: opacity 0.4s ease; }
.wizard-step.active, .onboard-slide.active { display: block; opacity: 1; }

.type-target { font-size: 1.6rem; font-weight: 700; min-height: 80px; line-height: 1.3; transform: translateZ(10px); }
.cursor {
    display: inline-block; width: 3px; height: 1.1em; background-color: var(--text-main);
    vertical-align: middle; animation: blink 0.8s infinite; margin-left: 3px;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.step-content { opacity: 0; pointer-events: none; transition: opacity 0.6s ease; transform: translateY(15px); }
.step-content.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ==========================================
   CUSTOM UI: DOMAIN CHECKER, CHIPS, DROPZONE
========================================== */
/* Domain Input */
.domain-input-group {
    display: flex; align-items: center; background: var(--input-bg);
    border: 1px solid var(--input-border); border-radius: 16px; 
    overflow: hidden; position: relative; transform: translateZ(15px);
}
.domain-field { 
    border: none; background: transparent; padding: 18px; width: 50%; 
    outline: none; color: var(--text-main); font-family: inherit; font-size: 1.1rem; text-align: right;
}
.domain-suffix { padding: 18px 18px 18px 4px; color: var(--text-muted); font-size: 1.05rem; font-weight: 500; white-space: nowrap; }
.domain-status { position: absolute; right: 15px; font-size: 1.2rem; }
.input-hint { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 8px; transform: translateZ(10px); }

/* Garage Type Chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; transform: translateZ(15px); }
.chip {
    flex: 1; min-width: 30%; text-align: center;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    padding: 12px 8px; border-radius: 12px; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease;
}
.chip input { display: none; }
.chip:has(input:checked) {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Typo Hint */
.typo-hint { display: block; font-size: 0.85rem; color: #f87171; margin-top: 6px; padding-left: 5px; }
.typo-hint .highlight { font-weight: 700; cursor: pointer; text-decoration: underline; }

/* Logo Dropzone */
.logo-upload-container { transform: translateZ(20px); }
.logo-dropzone {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 140px; height: 140px; margin: 0 auto;
    border: 2px dashed var(--glass-border); border-radius: 50%;
    background: var(--glass-bg); cursor: pointer;
    transition: all 0.3s ease; overflow: hidden; position: relative;
}
.logo-dropzone:hover { border-color: var(--text-main); background: var(--input-bg); }
.upload-icon { font-size: 2.5rem; margin-bottom: 8px; }
.upload-text { font-size: 0.85rem; font-weight: 600; }
.preview-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: absolute; inset: 0; }

/* Pricing Card */
.pricing-card {
    background: var(--input-bg); border: 1px solid var(--input-border);
    border-radius: 20px; padding: 25px 20px; text-align: center; 
    position: relative; transform: translateZ(20px);
}
.plan-tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--text-main); color: var(--btn-text);
    padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
}
.pricing-card h3 { font-size: 2.5rem; margin: 15px 0 5px; }
.yearly-toggle { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 15px; font-size: 0.95rem; cursor: pointer; font-weight: 500;}
