.landing-page {
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 15, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(42, 42, 56, 0);
    transition: all 0.4s ease;
}

.landing-nav.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(42, 42, 56, 0.5);
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-nav-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.landing-nav-logo:hover {
    transform: rotate(8deg) scale(1.05);
}

.landing-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-nav-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.landing-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.landing-nav-link:hover {
    color: var(--text-primary);
}

.landing-nav-link:hover::after {
    width: 20px;
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(109, 92, 231, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 70%, rgba(96, 165, 250, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(139, 124, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(109, 92, 231, 0.15);
    top: 10%;
    left: 15%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(96, 165, 250, 0.1);
    bottom: 20%;
    right: 10%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(139, 124, 247, 0.12);
    top: 50%;
    right: 30%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -40px); }
    66% { transform: translate(-20px, 20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 20px); }
    66% { transform: translate(20px, -30px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, 25px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-muted);
    border: 1px solid rgba(109, 92, 231, 0.25);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.mac-terminal-card {
    margin: 0 auto 30px auto;
    background: linear-gradient(160deg, rgba(109, 92, 231, 0.1) 0%, rgba(10, 10, 15, 0.8) 100%), var(--bg-secondary);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.6s ease 0.1s both;
    transform-style: preserve-3d;
}

.mac-terminal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: glint 4s infinite linear;
    pointer-events: none;
}

@keyframes glint {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.mac-terminal-tools {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(20px);
}

.mac-terminal-circle {
    padding: 0 4px;
}

.mac-terminal-box {
    display: inline-block;
    align-items: center;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
}

.mac-terminal-red {
    background-color: #ff605c;
}

.mac-terminal-yellow {
    background-color: #ffbd44;
}

.mac-terminal-green {
    background-color: #00ca4e;
}

.mac-terminal-content {
    padding: 40px 100px 60px;
    transform: translateZ(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mac-terminal-content .hero-badge {
    margin-bottom: 20px;
}

.mac-terminal-content .hero-title {
    margin-bottom: 24px;
    font-size: clamp(42px, 7vw, 76px);
}

.mac-terminal-content .hero-stats {
    margin-top: 40px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--info) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: fadeInUp 0.6s ease 0.1s both, gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
    min-height: 30px;
}

.typing-text {
    color: var(--text-secondary);
}

.typing-cursor {
    color: var(--accent);
    animation: cursorBlink 1s step-end infinite;
    font-weight: 300;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta .btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 4px 24px rgba(109, 92, 231, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: none;
}

.btn-glow:hover::before {
    animation: btnShine 0.6s ease forwards;
}

.btn-glow:hover {
    box-shadow: 0 6px 32px rgba(109, 92, 231, 0.5);
    transform: translateY(-2px);
}

@keyframes btnShine {
    to { transform: translateX(100%); }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}


.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}


.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: scrollBounce 2s ease infinite;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hero-scroll-hint:hover {
    opacity: 1;
}

.hero-scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


.features {
    padding: 100px 32px;
    position: relative;
}

.features-container {
    max-width: 1080px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.features-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 10, 15, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
    transform: translateZ(1px);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(109, 92, 231, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(109, 92, 231, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--accent-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
    transition: all 0.3s ease;
    transform: translateZ(24px);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(109, 92, 231, 0.4);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateZ(18px);
}

.feature-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    transform: translateZ(12px);
}


.ui-panels-section {
    position: relative;
    padding: 84px 32px;
}

.ui-panels-container {
    max-width: 1140px;
    margin: 0 auto;
}

.ui-panels-header {
    text-align: center;
    margin-bottom: 34px;
}

.ui-panels-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.ui-panels-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.ui-panels-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
}

.ui-panels-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    perspective: 1000px;
}

.ui-panel-card {
    position: relative;
    min-height: 200px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background:
        linear-gradient(160deg, rgba(109, 92, 231, 0.08) 0%, rgba(10, 10, 15, 0.6) 55%);
    backdrop-filter: blur(10px);
    padding: 22px 14px 18px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    overflow: hidden;
}

.ui-panel-card::before {
    content: '';
    position: absolute;
    inset: -40% -10%;
    pointer-events: none;
    background: radial-gradient(circle at var(--tilt-glare-x, 50%) var(--tilt-glare-y, 50%), rgba(255, 255, 255, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 0.22s ease, background-position 0.12s ease;
    transform: translateZ(1px);
}

.ui-panel-card:hover {
    border-color: rgba(109, 92, 231, 0.45);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35), 0 0 26px rgba(109, 92, 231, 0.15);
}

.ui-panel-card:hover::before {
    opacity: 1;
}

.ui-panel-icon {
    width: 100%;
    max-width: 142px;
    height: auto;
    margin: 4px auto 16px;
    display: block;
    object-fit: contain;
    transform: translateZ(26px);
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.ui-panel-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text-primary);
    transform: translateZ(16px);
}


.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.purchase-section {
    position: relative;
    padding: 100px 32px;
}

.purchase-container-wide {
    max-width: 1020px;
    margin: 0 auto;
}

.purchase-container {
    max-width: 480px;
    margin: 0 auto;
}

.purchase-header {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.purchase-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.purchase-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.purchase-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 15, 0.6) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.purchase-card:hover {
    border-color: rgba(109, 92, 231, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(109, 92, 231, 0.08);
    transform: translateY(-4px);
}

.purchase-card-featured {
    border-color: rgba(109, 92, 231, 0.4);
    background: linear-gradient(160deg, rgba(109, 92, 231, 0.1) 0%, rgba(10, 10, 15, 0.8) 100%);
    box-shadow: 0 0 30px rgba(109, 92, 231, 0.1);
}

.purchase-card-featured:hover {
    border-color: rgba(109, 92, 231, 0.7);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(109, 92, 231, 0.15);
}

.purchase-card-beta {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(160deg, rgba(251, 191, 36, 0.08) 0%, rgba(10, 10, 15, 0.7) 100%);
}

.purchase-card-beta:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(251, 191, 36, 0.1);
}

.purchase-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.purchase-card-badge-free {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.purchase-card-badge-popular {
    background: rgba(109, 92, 231, 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(109, 92, 231, 0.4);
}

.purchase-card-badge-beta {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.purchase-price {
    margin-bottom: 24px;
    margin-top: 8px;
}

.purchase-price-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.purchase-price-period {
    font-size: 15px;
    color: var(--text-muted);
    margin-left: 4px;
}

.purchase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
}

.purchase-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(42, 42, 56, 0.3);
}

.purchase-feature:last-child {
    border-bottom: none;
}

.purchase-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.purchase-feature-disabled {
    opacity: 0.4;
}

.purchase-feature-disabled svg {
    color: var(--text-muted);
}

.purchase-button-wrapper {
    display: flex;
    justify-content: center;
}

.purchase-button-wrapper stripe-buy-button {
    width: 100%;
}

.purchase-disabled-notice {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 13px;
}


.activate-section {
    position: relative;
    padding: 80px 32px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activate-container {
    max-width: 480px;
    margin: 0 auto;
}

.activate-header {
    text-align: center;
    margin-bottom: 32px;
}

.activate-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.activate-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
}

.activate-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 10, 15, 0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: border-color 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.activate-card:focus-within {
    border-color: rgba(109, 92, 231, 0.4);
    box-shadow: 0 15px 50px rgba(109, 92, 231, 0.2);
}

.interactive-group {
    position: relative;
    margin-bottom: 20px;
}

.interactive-group .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    transform-origin: left;
}

.interactive-group:focus-within .form-label {
    color: var(--accent-light);
    transform: scale(1.05);
}

.interactive-group .form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.interactive-group .form-input:focus {
    transform: translateY(-2px);
    border-color: transparent;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 8px 20px rgba(109, 92, 231, 0.15), inset 0 0 0 1px var(--accent);
    outline: none;
}

.input-highlight {
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--accent);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(4px) scaleX(0.5);
    z-index: 1;
}

.interactive-group:focus-within .input-highlight {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

.interactive-submit {
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
}

.interactive-submit:active {
    transform: scale(0.96) translateY(2px) !important;
}

.activate-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.activate-card .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.activate-alert {
    margin-bottom: 16px;
}

.activate-login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.activate-login-link a {
    color: var(--accent);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.activate-login-link a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ==========================================================================
   SOCIALS SECTION
   ========================================================================== */
.socials-section {
    padding: 100px 5%;
    position: relative;
    z-index: 2;
    background: transparent;
    display: flex;
    justify-content: center;
}

.socials-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.socials-header {
    margin-bottom: 40px;
}

.socials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.socials-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.socials-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.discord-btn {
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(to bottom, #4f4dd9 0%,#2b60aa 100%);
    color: white;
    padding: 0.8em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.discord-btn:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.discord-btn span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.3s;
}

.discord-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s;
}

.discord-btn .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0.5em;
    transition: all 0.3s;
}

.discord-btn:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
}

.discord-btn:hover svg {
    transform: rotate(360deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.landing-footer {
    padding: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.landing-footer-text {
    font-size: 12px;
    color: var(--text-muted);
}


.login-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.login-modal-overlay.active {
    display: flex;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.login-modal {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 10, 15, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.login-modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.login-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-modal-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.login-modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.login-modal .interactive-group {
    margin-bottom: 20px;
}

.login-modal .btn {
    width: 100%;
    margin-top: 8px;
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px) scale(0.98); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


@media (max-width: 768px) {
    .landing-nav {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .mac-terminal-content {
        padding: 30px 20px 40px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .activate-section {
        padding: 60px 20px;
    }

    .activate-card {
        padding: 24px 20px;
    }

    .activate-card .form-row-2 {
        grid-template-columns: 1fr;
    }

    .purchase-section {
        padding: 60px 20px;
    }

    .purchase-card {
        padding: 28px 20px;
    }

    .purchase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .features {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .ui-panels-section {
        padding: 60px 20px;
    }

    .ui-panels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ui-panel-card {
        min-height: 170px;
    }

    .landing-nav-links .landing-nav-link:not(.btn) {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 1200px) {
    .ui-panels-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .ui-panels-grid {
        grid-template-columns: 1fr;
    }
}
