.lt-root {
    --lt-yellow: #ffff39;
    --lt-white: #fff;
    --lt-muted: rgba(255, 255, 255, 0.55);
    --lt-border: rgba(255, 255, 255, 0.1);
    --lt-card-bg: linear-gradient(145deg, #2b2b2b 0%, #1d1d1d 45%, #121212 100%);
    --lt-font-display: HelvLI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --lt-font-body: HelvR, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --lt-font-mono: Fraktion, ui-monospace, SFMono-Regular, Menlo, monospace;

    background: #000;
    color: var(--lt-white);
    font-family: var(--lt-font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.lt-root *,
.lt-root *::before,
.lt-root *::after {
    box-sizing: border-box;
}

.lt-root :where(h1, h2, h3, p) {
    margin: 0;
}

.lt-root img {
    display: block;
    max-width: 100%;
    height: auto;
}

.pswp {
    display: none;
}

#footer.landing-terminal {
    margin-top: 0;
    padding-top: clamp(2.5rem, 4vw, 4rem);
    padding-bottom: 0;
}

#footer.landing-terminal #footerin {
    position: relative;
    bottom: auto;
    margin-top: 2.5rem;
}

.lt-hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 7rem 1rem 2.5rem;
    overflow: hidden;
    background: #000;
    text-align: center;
}

.lt-bg-gradient,
.lt-bg-grid,
.lt-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lt-bg-gradient {
    opacity: 0.4;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(204, 204, 204, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(230, 230, 230, 0.04) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: lt-gradient 8s ease-in-out infinite;
}

.lt-bg-grid {
    opacity: 0.4;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.lt-orb {
    position: absolute;
    border-radius: 50%;
}

.lt-orb-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    filter: blur(40px);
    animation: lt-float-slow 20s ease-in-out infinite;
}

.lt-orb-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(204, 204, 204, 0.07) 0%, transparent 70%);
    filter: blur(30px);
    animation: lt-float-medium 15s ease-in-out infinite;
}

.lt-orb-3 {
    bottom: 20%;
    left: 20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230, 230, 230, 0.06) 0%, transparent 70%);
    filter: blur(25px);
    animation: lt-float-fast 10s ease-in-out infinite;
}

.lt-orb-4 {
    top: 25%;
    right: 25%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    filter: blur(20px);
    animation: lt-float-medium 15s ease-in-out infinite reverse;
}

.lt-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 42rem;
    flex-direction: column;
    gap: 1.5rem;
}

.lt-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lt-badge {
    display: inline-flex;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.875rem;
    color: transparent;
    background-image: linear-gradient(110deg, #7a7a7a 35%, #f0f0f0 50%, #7a7a7a 65%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: lt-shimmer 3s linear infinite;
}

.lt-root .lt-hero h1 {
    font-family: var(--lt-font-display);
    font-size: clamp(1.875rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--lt-yellow);
    text-wrap: balance;
}

.lt-hero-copy p {
    max-width: 28rem;
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-wrap: balance;
}

.lt-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 2rem);
}

.lt-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.lt-digits {
    font-family: var(--lt-font-mono);
    font-size: clamp(1.5rem, 5vw, 3.75rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.lt-countdown.is-ready .lt-digits {
    color: var(--lt-white);
}

.lt-countdown.is-done .lt-digits {
    color: var(--lt-yellow);
}

.lt-label {
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lt-muted);
}

.lt-sep {
    margin-top: -1.25rem;
    font-size: clamp(1.125rem, 2.5vw, 1.875rem);
    color: rgba(255, 255, 255, 0.3);
}

.lt-glass {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(18, 18, 18, 0.6);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.lt-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lt-form input {
    width: 100%;
    height: 3.25rem;
    padding: 0 0.75rem;
    border: 0;
    border-radius: 0.375rem;
    background: rgba(38, 38, 38, 0.8);
    font-family: inherit;
    font-size: 1rem;
    color: var(--lt-white);
    outline: none;
}

.lt-form input::placeholder {
    color: var(--lt-muted);
}

.lt-form input:focus-visible {
    box-shadow: 0 0 0 1px var(--lt-yellow);
}

.lt-root .lt-form button {
    height: 3.25rem;
    padding: 0;
    text-transform: none;
    box-shadow: none;
    margin-top: 1rem;
    border: 0;
    border-radius: 0.75rem;
    background: var(--lt-yellow);
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    color: #111;
    cursor: pointer;
    transition: opacity 0.2s;
}

.lt-root .lt-form button:hover {
    border: 0;
    box-shadow: none;
    opacity: 0.9;
}

.lt-root .lt-form button:disabled {
    cursor: wait;
    opacity: 0.6;
}

.lt-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lt-form-msg {
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

.lt-form-msg[data-type="success"] {
    color: var(--lt-yellow);
}

.lt-form-msg[data-type="error"] {
    color: #ff6b6b;
}

.lt-usps {
    position: relative;
    padding: 4rem 1rem;
    border-top: 1px solid var(--lt-border);
    background: #000;
}

.lt-usps-inner {
    max-width: 72rem;
    margin: 0 auto;
}

.lt-usps-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.lt-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lt-yellow);
}

.lt-root .lt-usps h2 {
    font-family: var(--lt-font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.lt-usps-head p {
    max-width: 36rem;
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.lt-usps-grid {
    display: grid;
    gap: 2.5rem;
}

.lt-usps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lt-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    background: var(--lt-card-bg);
}

.lt-card svg {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    color: var(--lt-yellow);
}

.lt-root .lt-card h3 {
    font-family: var(--lt-font-display);
    line-height: 1.3;
    font-size: 0.875rem;
    font-weight: normal;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: var(--lt-yellow);
}

.lt-card p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.lt-terminal {
    display: flex;
    padding: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    background: var(--lt-card-bg);
}

.lt-terminal img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    object-fit: cover;
    object-position: left;
}

@media (min-width: 640px) {
    .lt-hero {
        padding: 8rem 1.5rem 3.5rem;
    }

    .lt-hero-content {
        gap: 2rem;
    }

    .lt-glass {
        padding: 1.5rem;
    }

    .lt-usps {
        padding: 5rem 1.5rem;
    }

    .lt-card {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .lt-card svg {
        width: 2.75rem;
        height: 2.75rem;
    }

    .lt-root .lt-card h3 {
    font-family: var(--lt-font-display);
    line-height: 1.3;
        font-size: 1rem;
    }

    .lt-terminal {
        padding: 0.75rem;
    }
}

@media (min-width: 768px) {
    .lt-hero {
        padding: 9rem 2rem 4rem;
    }

    .lt-root .lt-hero h1 {
        white-space: nowrap;
    }

    .lt-usps {
        padding: 6rem 2rem;
    }

    .lt-usps-head {
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .lt-hero {
        padding-top: 10rem;
    }

    .lt-hero-copy p {
        max-width: none;
        white-space: nowrap;
    }

    .lt-usps-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 3.5rem;
    }

    .lt-usps-list {
        justify-content: center;
    }
}

@keyframes lt-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

@keyframes lt-float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

@keyframes lt-float-medium {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -60px) scale(1.08); }
    66% { transform: translate(30px, 40px) scale(0.92); }
}

@keyframes lt-float-fast {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -70px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .lt-bg-gradient,
    .lt-orb,
    .lt-badge {
        animation: none;
    }
}

#footer.landing-terminal nav ul {
    position: relative;
    bottom: auto;
}