/* =========================================
   NOTIFY LANDING PAGE V2 (ENTRY POINT)
   ========================================= */

/* Import Modules */
@import 'base.css';
@import 'layout.css';
@import 'app-components.css';
@import 'animations.css';

/* Global Overrides / Resets */
:root {
    --header-height: 72px;
}

body {
    overflow-x: hidden;
}

/* --- TYPOGRAPHY UPDATES --- */
.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

/* --- CTA BUTTONS --- */
.cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 16px;
}

/* --- HERO INTERACTIONS --- */
.hero-float-item {
    overflow: visible !important;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.hero-gizmo {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    width: auto !important;
    height: auto !important;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-gizmo-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hg-tl {
    top: -6px;
    left: -6px;
}

.hg-tr {
    top: -6px;
    right: -6px;
}

.hg-bl {
    bottom: -6px;
    left: -6px;
}

.hg-br {
    bottom: -6px;
    right: -6px;
}

.hero-gizmo-rot-line {
    position: absolute;
    top: -25px;
    left: 50%;
    width: 2px;
    height: 25px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.hg-rot {
    top: -34px;
    left: 50%;
    margin-left: -5px;
    /* Center 10px width */
    cursor: grab;
}