/**
 * Teaser Landing Page Styles
 *
 * Stunning visual effects for the AES waiting list landing page.
 * Includes: particles, 3D orb, glows, animations
 *
 * @package AES_Theme
 * @since 1.3.0
 */

/* ==========================================================================
   TEASER HERO
   ========================================================================== */

.aes-section--teaser_hero {
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.teaser-hero {
    position: relative;
    width: 100%;
    
    display: flex; flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Effects */
.teaser-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.teaser-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.teaser-hero__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 170, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 212, 170, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 60% 20%, rgba(0, 212, 170, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 50%, rgba(0, 212, 170, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 10% 80%, rgba(0, 212, 170, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 90% 90%, rgba(0, 212, 170, 0.4) 50%, transparent 50%);
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.teaser-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.teaser-hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: glowFloat1 15s ease-in-out infinite;
}

.teaser-hero__glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: glowFloat2 18s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

/* 3D Orb Visual */
.teaser-hero__orb {
    position: absolute;
    right: 10%;
    top: calc(50% - 60px);
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.teaser-hero__orb-core {
    position: absolute;
    inset: 80px;
    background: radial-gradient(circle at 30% 30%,
        rgba(0, 255, 204, 0.4) 0%,
        rgba(0, 212, 170, 0.2) 40%,
        rgba(0, 122, 98, 0.1) 70%,
        transparent 100%);
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(0, 212, 170, 0.3),
        inset 0 0 60px rgba(0, 212, 170, 0.1);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(0, 212, 170, 0.3), inset 0 0 60px rgba(0, 212, 170, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(0, 212, 170, 0.5), inset 0 0 80px rgba(0, 212, 170, 0.2);
    }
}

.teaser-hero__orb-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(0, 212, 170, 0.2);
    border-radius: 50%;
}

.teaser-hero__orb-ring--1 {
    animation: orbRing1 12s linear infinite;
    border-color: rgba(0, 212, 170, 0.3);
    border-style: dashed;
}

.teaser-hero__orb-ring--2 {
    inset: 30px;
    animation: orbRing2 15s linear infinite reverse;
    border-color: rgba(0, 212, 170, 0.2);
}

.teaser-hero__orb-ring--3 {
    inset: 60px;
    animation: orbRing1 20s linear infinite;
    border-width: 1px;
    border-color: rgba(0, 212, 170, 0.15);
}

@keyframes orbRing1 {
    from { transform: rotateX(60deg) rotateZ(0deg); }
    to { transform: rotateX(60deg) rotateZ(360deg); }
}

@keyframes orbRing2 {
    from { transform: rotateX(70deg) rotateY(20deg) rotateZ(0deg); }
    to { transform: rotateX(70deg) rotateY(20deg) rotateZ(360deg); }
}

.teaser-hero__orb-pulse {
    position: absolute;
    inset: 60px;
    border: 2px solid rgba(0, 212, 170, 0.4);
    border-radius: 50%;
    animation: orbPulseRing 3s ease-out infinite;
}

@keyframes orbPulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Content */
.teaser-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 0;
}

.teaser-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--aes-font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aes-primary);
    margin-bottom: 30px;
}

.teaser-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--aes-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.teaser-hero__headline {
    margin: 0 0 30px;
}

.teaser-hero__headline-main {
    display: block;
    font-family: var(--aes-font-headline);
    font-size: clamp(64px, 12vw, 120px);
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 60px rgba(0, 212, 170, 0.5);
    animation: headlineGlow 3s ease-in-out infinite alternate;
}

@keyframes headlineGlow {
    from { text-shadow: 0 0 40px rgba(0, 212, 170, 0.3); }
    to { text-shadow: 0 0 80px rgba(0, 212, 170, 0.6); }
}

.teaser-hero__headline-sub {
    display: block;
    font-family: var(--aes-font-body);
    font-size: clamp(18px, 3vw, 28px);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--aes-text-muted);
    margin-top: 15px;
}

.teaser-hero__description {
    font-family: var(--aes-font-body);
    font-size: 20px;
    line-height: 1.15;
    color: var(--aes-text);
    margin-bottom: 40px;
    max-width: 550px;
}

.teaser-hero__cta {
    margin-bottom: 60px;
}

.teaser-hero__btn {
    position: relative;
    overflow: hidden;
}

.teaser-hero__btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.4), transparent);
    transform: translateX(-100%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.teaser-hero__btn-text,
.teaser-hero__btn-arrow {
    position: relative;
    z-index: 1;
}

.teaser-hero__btn-arrow {
    display: inline-flex;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.teaser-hero__btn:hover .teaser-hero__btn-arrow {
    transform: translateX(4px);
}

/* Stats */
.teaser-hero__stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.teaser-hero__stat {
    text-align: center;
}

.teaser-hero__stat-value {
    display: block;
    font-family: var(--aes-font-headline);
    font-size: 32px;
    color: var(--aes-accent-red);
    text-transform: uppercase;
}

.teaser-hero__stat:last-child .teaser-hero__stat-value {
    color: var(--aes-primary);
}

.teaser-hero__stat-label {
    font-size: 12px;
    color: var(--aes-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teaser-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--aes-border);
}

/* Scroll Indicator */
.teaser-hero__scroll {
    position: relative;
    margin: 26px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.teaser-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--aes-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.teaser-hero__scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aes-text-muted);
}

/* ==========================================================================
   TEASER WAITLIST FORM
   ========================================================================== */

.aes-section--teaser_waitlist {
    padding: 0;
}

.teaser-waitlist {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, var(--aes-bg-dark) 0%, var(--aes-bg-panel) 50%, var(--aes-bg-dark) 100%);
}

.teaser-waitlist__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.teaser-waitlist__inner {
    position: relative;
    z-index: 1;
}

.teaser-waitlist__header {
    text-align: center;
    margin-bottom: 60px;
}

.teaser-waitlist__title {
    font-family: var(--aes-font-headline);
    font-size: clamp(36px, 6vw, 56px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 15px;
}

.teaser-waitlist__subtitle {
    font-size: 18px;
    color: var(--aes-text-muted);
    margin: 0;
}

.teaser-waitlist__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Form */
.teaser-waitlist__form-wrap {
    background: linear-gradient(180deg, var(--aes-bg-panel-light) 0%, var(--aes-bg-panel) 100%);
    border: 2px solid var(--aes-border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
}

.teaser-waitlist__form-wrap::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aes-primary), transparent);
}

.teaser-waitlist__field {
    margin-bottom: 24px;
}

.teaser-waitlist__label {
    display: block;
    font-family: var(--aes-font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--aes-text);
    margin-bottom: 8px;
}

.teaser-waitlist__label .required {
    color: var(--aes-accent-red);
}

.teaser-waitlist__label .optional {
    color: var(--aes-text-muted);
    font-size: 11px;
    text-transform: none;
}

.teaser-waitlist__input,
.teaser-waitlist__select {
    width: 100%;
    padding: 16px 20px;
    background: var(--aes-bg-dark);
    border: 2px solid var(--aes-border);
    border-radius: 6px;
    font-family: var(--aes-font-body);
    font-size: 16px;
    color: var(--aes-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.teaser-waitlist__input:focus,
.teaser-waitlist__select:focus {
    outline: none;
    border-color: var(--aes-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.teaser-waitlist__input::placeholder {
    color: var(--aes-text-dim);
}

.teaser-waitlist__select {
    cursor: pointer;
    appearance: none;
    font-family: var(--aes-font-body);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.teaser-waitlist__submit {
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.teaser-waitlist__submit-loading,
.teaser-waitlist__submit-success {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.teaser-waitlist__submit.is-loading .teaser-waitlist__submit-text {
    opacity: 0.7;
}

.teaser-waitlist__submit.is-loading .teaser-waitlist__submit-loading {
    display: block;
}

.teaser-waitlist__submit.is-success .teaser-waitlist__submit-text {
    opacity: 0;
}

.teaser-waitlist__submit.is-success .teaser-waitlist__submit-success {
    display: block;
}

.aes-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.teaser-waitlist__message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.teaser-waitlist__message--success {
    display: block;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--aes-primary);
    color: var(--aes-primary);
}

.teaser-waitlist__message--error {
    display: block;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid var(--aes-accent-red);
    color: var(--aes-accent-red);
}

.teaser-waitlist__privacy {
    font-size: 12px;
    color: var(--aes-text-dim);
    text-align: center;
    margin-top: 20px;
}

/* Perks */
.teaser-waitlist__perks {
    padding-top: 20px;
}

.teaser-waitlist__perks-title {
    font-family: var(--aes-font-headline);
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 30px;
}

.teaser-waitlist__perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.teaser-waitlist__perk {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--aes-border);
}

.teaser-waitlist__perk:last-child {
    border-bottom: none;
}

.teaser-waitlist__perk-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 10px;
    color: var(--aes-primary);
}

.teaser-waitlist__perk-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.teaser-waitlist__perk-text strong {
    font-family: var(--aes-font-body);
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teaser-waitlist__perk-text span {
    font-size: 14px;
    color: var(--aes-text-muted);
}

/* ==========================================================================
   TEASER PROBLEM STATS
   ========================================================================== */

.aes-section--teaser_problem_stats {
    padding: 25px 0 50px 0;
    background: var(--aes-bg-dark);
}

.teaser-problem-stats__title {
    font-family: var(--aes-font-headline);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--aes-accent-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 0 0 60px;
}

.teaser-problem-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.teaser-problem-stat {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(180deg, var(--aes-bg-panel) 0%, var(--aes-bg-dark) 100%);
    border: 2px solid var(--aes-border);
    border-radius: 12px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.teaser-problem-stat:hover {
    border-color: var(--aes-accent-red);
    transform: translateY(-5px);
}

.teaser-problem-stat__value {
    font-family: var(--aes-font-headline);
    font-size: clamp(48px, 8vw, 72px);
    color: var(--aes-accent-red);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 51, 102, 0.3);
}

.teaser-problem-stat__label {
    font-family: var(--aes-font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--aes-text);
    margin-top: 10px;
}

.teaser-problem-stat__context {
    font-size: 14px;
    color: var(--aes-text-muted);
    margin-top: 15px;
    line-height: 1.5;
}

.teaser-problem-stats__bottom {
    text-align: center;
    margin-top: 60px;
}

.teaser-problem-stats__callout {
    font-family: var(--aes-font-headline);
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ==========================================================================
   TEASER SOLUTION
   ========================================================================== */

.aes-section--teaser_solution {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--aes-bg-panel) 0%, var(--aes-bg-dark) 100%);
}

.teaser-solution__header {
    text-align: center;
    margin-bottom: 60px;
}

.teaser-solution__title {
    font-family: var(--aes-font-headline);
    font-size: clamp(36px, 6vw, 56px);
    color: var(--aes-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 15px;
    text-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
}

.teaser-solution__subtitle {
    font-size: 20px;
    color: var(--aes-text);
    margin: 0;
}

.teaser-solution__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.teaser-benefit {
    text-align: center;
    padding: 40px 25px;
    background: var(--aes-bg-panel);
    border: 2px solid var(--aes-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.teaser-benefit:hover {
    border-color: var(--aes-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.teaser-benefit__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    color: var(--aes-primary);
    transition: all 0.3s ease;
}

.teaser-benefit:hover .teaser-benefit__icon {
    background: var(--aes-primary);
    color: var(--aes-bg-dark);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.teaser-benefit__title {
    font-family: var(--aes-font-headline);
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.teaser-benefit__text {
    font-size: 14px;
    color: var(--aes-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   TEASER MANIFESTO
   ========================================================================== */

.aes-section--teaser_manifesto {
    padding: 0;
}

.teaser-manifesto {
    position: relative;
    padding: 0 0 60px 0;
    background: var(--aes-bg-dark);
    overflow: hidden;
}

.teaser-manifesto__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.teaser-manifesto__lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 170, 0.02) 2px,
        rgba(0, 212, 170, 0.02) 4px
    );
}

.teaser-manifesto__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.teaser-manifesto__line {
    font-family: var(--aes-font-headline);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--aes-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.3;
}

.teaser-manifesto__line--emphasis {
    font-size: clamp(28px, 5vw, 44px);
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
}

.teaser-manifesto__cta {
    margin-top: 60px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .teaser-hero__orb {
        width: 300px;
        height: 300px;
        right: 5%;
    }
}

@media (max-width: 1023px) {
    .teaser-hero__orb {
        display: none;
    }

    .teaser-hero__content {
        text-align: center;
        max-width: 100%;
    }

    .teaser-hero__stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .teaser-waitlist__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .teaser-solution__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .teaser-problem-stats__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .teaser-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .teaser-hero__badge {
        margin-bottom: 20px;
    }

    .teaser-hero__headline-main {
        font-size: 48px;
    }

    .teaser-hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .teaser-hero__stat-divider {
        width: 60px;
        height: 1px;
    }

    .teaser-waitlist__form-wrap {
        padding: 30px 20px;
    }

    .teaser-solution__grid {
        grid-template-columns: 1fr;
    }

    .teaser-benefit {
        padding: 30px 20px;
    }

    .teaser-manifesto__line {
        font-size: 20px;
    }

    .teaser-manifesto__line--emphasis {
        font-size: 24px;
    }
}

/* ==========================================================================
   BASE STYLES FOR TEASER LANDING PAGE
   ========================================================================== */

/* Body styling for teaser landing */
body.teaser-landing-page {
    background-color: var(--aes-bg-dark);
    background-image: none;
    min-height: 100vh;
}

body.teaser-landing-page.no-header .site-header,
body.teaser-landing-page.no-footer .site-footer {
    display: none;
}

/* Main wrapper */
.teaser-landing {
    width: 100%; overflow-x: hidden;
}

/* XL Button variant (used in teaser pages) */
.aes-btn--xl {
    padding: 20px 40px;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Ensure sections stack properly */
.aes-section {
    position: relative;
}

/* Container widths for teaser */
.teaser-landing .aes-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.teaser-landing .aes-container--narrow {
    max-width: 800px;
}

/* AES Tagline in Hero */
.teaser-hero__headline-aes {
    display: block;
    font-family: var(--aes-font-headline);
    font-size: clamp(29px, 5vw, 44px);
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 212, 170, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* Orb Equalizer */
.teaser-hero__orb-eq {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    gap: 4px;
    height: 48px;
    align-items: flex-end;
    z-index: 10;
    opacity: 0.5;
}

.teaser-hero__orb-eq span {
    width: 8px;
    background: linear-gradient(to top, rgba(0, 150, 120, 0.8) 0%, rgba(0, 212, 170, 1) 50%, rgba(0, 255, 204, 1) 100%);
    border-radius: 2px;
}

.teaser-hero__orb-eq span:nth-child(1) { animation: eq1 2.8s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(2) { animation: eq2 2.5s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(3) { animation: eq3 3.1s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(4) { animation: eq4 2.6s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(5) { animation: eq5 2.9s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(6) { animation: eq6 2.4s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(7) { animation: eq7 3.2s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(8) { animation: eq8 2.3s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(9) { animation: eq9 3.0s ease-in-out infinite; }
.teaser-hero__orb-eq span:nth-child(10) { animation: eq10 2.7s ease-in-out infinite; }

/* Mobile button text wrap */
@media (max-width: 480px) {
    .teaser-hero__btn {
        max-width: calc(100vw - 40px);
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    
    .teaser-hero__btn-text {
        white-space: normal;
    }
    
    .teaser-hero__headline-sub,
    .teaser-hero__headline-aes {
        white-space: nowrap;
    }
}

/* Mobile-only line break */
.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: inline;
    }
    .mobile-break::after {
        content: "\A";
        white-space: pre;
    }
}

/* Mobile description sizing */
@media (max-width: 480px) {
    .teaser-hero__description {
        font-size: 16px;
        line-height: 1.2;
    }
}

/* Tablet description alignment */
@media (max-width: 1023px) {
    .teaser-hero__description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Perks section mobile/tablet padding */
@media (max-width: 1023px) {
    .teaser-waitlist__perks {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* AES headline shimmer - text masked */

/* AES headline shimmer - text masked */
.teaser-hero__headline-aes {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 40%,
        rgba(0, 255, 204, 0.9) 50%,
        #fff 60%,
        #fff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aesTextShimmer 6s ease-in-out infinite;
}

@keyframes aesTextShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Select placeholder styling */
.teaser-waitlist__select option[value=""] {
    color: var(--aes-text-dim);
}

.teaser-waitlist__select:invalid,
.teaser-waitlist__select option[value=""]:checked {
    color: var(--aes-text-dim);
}

.teaser-waitlist__select:not(:invalid) {
    color: var(--aes-text);
}
