/**
 * ÆNERGY B2B Landing Widget Styles
 * Pixel-perfect match to aenergy-ref.html
 */

:root {
    --W: #FFFFFF;
    --WD: #E8EEFF;
    --BK: #000000;
    --BKT: rgba(0,0,0,0.82);
    --BKM: rgba(0,0,0,0.55);
    --BKD: rgba(0,0,0,0.35);
    --GR: #888888;
    --mono: 'Roboto Mono', monospace;
    --sans: 'Roboto', sans-serif;
}

.aenergy-widget,
.aenergy-widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.aenergy-widget {
    font-family: var(--sans);
    color: var(--W);
    overflow: visible;
    cursor: none;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* IKB BACKGROUND - covers entire widget */
.aenergy-ikb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aenergy-ikb-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/bg.jpeg');
    background-size: cover;
    background-position: center;
}

.aenergy-ikb-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.28) 100%);
    pointer-events: none;
}

/* Screens sit above background */
.aenergy-widget > .aenergy-screen {
    position: fixed;
    z-index: 10;
}

/* ═══ CUSTOM CURSOR ═══ */
#aenergy-cur {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}

#aenergy-cur::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.85);
    transform: translateX(-50%);
}

#aenergy-cur::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.85);
    transform: translateY(-50%);
}

#aenergy-curR {
    position: fixed;
    width: 4px;
    height: 4px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

/* ═══ SCREENS ═══ */
.aenergy-screen {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .9s ease;
}

.aenergy-screen.active {
    opacity: 1;
    pointer-events: all;
}

/* ═══ ENTRY ═══ */
#entry {
    flex-direction: column;
}

.e-top {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    opacity: 0;
    animation: aenergy-up .9s .15s ease forwards;
    z-index: 2;
}

.e-logo-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.e-ae {
    font-family: var(--sans);
    font-weight: 900;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: .08em;
    color: var(--W);
    line-height: 1;
    text-shadow: 0 2px 28px rgba(0,0,0,0.45);
    text-align: center;
}

.e-name {
    font-family: var(--mono);
    font-weight: 500;
    font-size: clamp(.7rem, 1.4vw, .9rem);
    letter-spacing: .52em;
    color: var(--W);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.e-sub {
    font-family: var(--mono);
    font-weight: 300;
    font-size: .52rem;
    letter-spacing: .42em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.aenergy-split {
    display: flex;
    width: 100%;
    height: 56vh;
    position: relative;
    z-index: 1;
}

.aenergy-split::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 48%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 70%, transparent);
}

.aenergy-door {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.aenergy-door::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .6s;
}

.aenergy-door:hover::before {
    opacity: 1;
}

.aenergy-door-ghost {
    position: absolute;
    font-family: var(--sans);
    font-weight: 900;
    font-size: clamp(7rem, 16vw, 14rem);
    color: rgba(0,0,0,0.07);
    line-height: 1;
    pointer-events: none;
    transition: color .6s;
    user-select: none;
}

.aenergy-door:hover .aenergy-door-ghost {
    color: rgba(0,0,0,0.14);
}

.aenergy-door-label {
    font-family: var(--sans);
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    letter-spacing: .03em;
    color: var(--W);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    transition: letter-spacing .5s;
}

.aenergy-door:hover .aenergy-door-label {
    letter-spacing: .07em;
    text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

.aenergy-door-underline {
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.45);
    width: clamp(120px, 28vw, 260px);
    margin-top: 18px;
    position: relative;
    z-index: 1;
    transition: background .5s;
}

.aenergy-door:hover .aenergy-door-underline {
    background: rgba(255,255,255,0.85);
}

.aenergy-entry-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--mono);
    font-size: .49rem;
    letter-spacing: .36em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    opacity: 0;
    animation: aenergy-up .9s 1.7s ease forwards;
    z-index: 2;
}

/* ═══ FUNNEL SHELL ═══ */
.aenergy-funnel {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 48px 140px;
    padding-top: 58px;
    scrollbar-width: none;
    position: relative;
}

.aenergy-funnel::-webkit-scrollbar {
    display: none;
}

.aenergy-funnel-inner {
    width: 100%;
    max-width: 880px;
    display: flex;
    flex-direction: column;
}

/* frosted nav bar */
.aenergy-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 58px;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 200;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.aenergy-nav.on {
    display: flex;
}

.aenergy-nav-left {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.aenergy-nav-ae {
    font-family: var(--sans);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -.02em;
    color: var(--W);
}

.aenergy-nav-word {
    font-family: var(--mono);
    font-weight: 500;
    font-size: .6rem;
    letter-spacing: .45em;
    color: rgba(255,255,255,0.5);
}

.aenergy-nav-back {
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .3s;
}

.aenergy-nav-back:hover {
    color: var(--W);
}

/* ═══ CONTENT BLOCKS ═══ */
.aenergy-blk {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .95s, transform .95s;
}

.aenergy-blk:last-child {
    border: none;
    padding-top: 20px;
}

.aenergy-blk.on {
    opacity: 1;
    transform: translateY(0);
}

.aenergy-blk-idx {
    font-family: var(--mono);
    font-size: .5rem;
    letter-spacing: .5em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.aenergy-blk-idx::after {
    content: '';
    display: block;
    width: 44px;
    height: 1px;
    background: rgba(255,255,255,0.6);
}

.aenergy-headline {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(2rem, 5.5vw, 4.4rem);
    line-height: 1.06;
    color: var(--W);
    margin-bottom: 28px;
    max-width: 740px;
    letter-spacing: -.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.aenergy-headline strong {
    font-weight: 900;
}

.aenergy-headline em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

.aenergy-body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 42px;
    letter-spacing: .01em;
    text-align: center;
}

/* ═══ BATTERY GRAPHIC ═══ */
.aenergy-bat-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(32px, 6vw, 80px);
    margin-bottom: 52px;
    margin-top: 24px;
    width: 100%;
}

.aenergy-bat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.aenergy-bat-item svg.bat {
    width: 72px;
    height: 128px;
}

.aenergy-bat-label {
    font-family: var(--mono);
    font-size: .56rem;
    letter-spacing: .3em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.aenergy-bat-label.charged {
    color: rgba(255,255,255,0.85);
}

.aenergy-bat-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 52px;
}

.aenergy-bat-arrow-text {
    font-family: var(--sans);
    font-weight: 900;
    font-size: .85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: .04em;
}

/* Battery animations */
@keyframes aenergy-charge {
    0%   { height: 4px;   y: 110px; opacity: 0.5; }
    100% { height: 108px; y: 14px;  opacity: 1;   }
}

@keyframes aenergy-pulse-bolt {
    0%,100% { opacity: 0.4; transform: scale(0.95); }
    50%      { opacity: 1;   transform: scale(1.05); }
}

@keyframes aenergy-blink-low {
    0%,100% { opacity: 0.5; }
    50%      { opacity: 0.15; }
}

.aenergy-bat-fill-charging {
    animation: aenergy-charge 2.8s cubic-bezier(0.4,0,0.2,1) infinite;
    transform-origin: bottom;
}

.aenergy-bat-bolt {
    animation: aenergy-pulse-bolt 1.6s ease-in-out infinite;
    transform-origin: center;
}

.aenergy-bat-low-fill {
    animation: aenergy-blink-low 2.2s ease-in-out infinite;
}

/* ═══ ATOM STAGE ═══ */
.aenergy-atom-wrap {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.aenergy-atom-stage {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    position: relative;
    margin-bottom: 80px;
}

.aenergy-atom-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.aenergy-atom-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.ac-ae {
    font-family: var(--sans);
    font-weight: 900;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: -.01em;
    color: var(--W);
    display: block;
    margin-bottom: 3px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.ac-sub {
    font-family: var(--mono);
    font-weight: 300;
    font-size: clamp(.42rem, .65vw, .56rem);
    letter-spacing: .18em;
    color: rgba(255,255,255,0.4);
    display: block;
}

/* ═══ PILLAR CARDS ═══ */
.aenergy-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    width: 100%;
    max-width: 680px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
}

.aenergy-pillar {
    padding: 28px 24px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    transition: background .4s, border-color .4s;
    cursor: none;
}

.aenergy-pillar:hover {
    background: rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.3);
}

.aenergy-pillar.lit {
    background: rgba(0,0,0,0.72);
    border-color: rgba(255,255,255,0.6);
}

.pl-tag {
    font-family: var(--mono);
    font-weight: 500;
    font-size: .52rem;
    letter-spacing: .38em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.pl-name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .14em;
    color: var(--W);
    margin-bottom: 4px;
}

.pl-latin {
    font-family: var(--sans);
    font-style: italic;
    font-weight: 300;
    font-size: .66rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 11px;
}

.pl-desc {
    font-family: var(--sans);
    font-weight: 300;
    font-size: .92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
}

.pl-eq {
    margin-top: 11px;
    padding-top: 9px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: var(--mono);
    font-size: .52rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: .07em;
}

/* ═══ TRUTH ═══ */
.aenergy-truth {
    width: 100%;
    max-width: 680px;
    padding: 28px 32px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 42px;
    text-align: center;
}

.truth-label {
    font-family: var(--mono);
    font-weight: 500;
    font-size: .5rem;
    letter-spacing: .42em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.truth-text {
    font-family: var(--sans);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    color: var(--W);
    line-height: 1.65;
    margin-bottom: 0;
}

.truth-eq {
    font-family: var(--mono);
    font-size: .56rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: .1em;
}

/* ═══ AUDIENCE ═══ */
.aenergy-aud {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 680px;
    margin-bottom: 42px;
    border: 1px solid rgba(255,255,255,0.1);
}

.aenergy-at {
    padding: 30px 20px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background .4s, border-color .4s;
    text-align: center;
}

.aenergy-at:hover {
    background: rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.25);
}

.at-mark {
    width: 18px;
    height: 2px;
    background: var(--W);
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

.at-name {
    font-family: var(--mono);
    font-weight: 500;
    font-size: .68rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--W);
    margin-bottom: 10px;
}

.at-desc {
    font-family: var(--sans);
    font-weight: 300;
    font-size: .92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
}

/* ═══ STATS ═══ */
.aenergy-stats {
    display: flex;
    gap: 44px;
    margin-bottom: 42px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.stat-n {
    font-family: var(--sans);
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--W);
    letter-spacing: -.03em;
    display: block;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.stat-l {
    font-family: var(--mono);
    font-size: .5rem;
    letter-spacing: .3em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

/* ═══ PULL QUOTE ═══ */
.aenergy-pull {
    margin-bottom: 52px;
    width: 100%;
    max-width: 780px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pull-t {
    font-family: var(--sans);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--W);
    line-height: 1.35;
    margin-bottom: 16px;
    text-shadow: 0 2px 32px rgba(0,0,0,0.4);
}

.pull-a {
    font-family: var(--mono);
    font-size: .56rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: .4em;
    text-align: center;
}

/* ═══ VIDEO ═══ */
.aenergy-vid {
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    background: rgba(0,0,0,0.55);
    margin-bottom: 36px;
    overflow: hidden;
    cursor: none;
}

.aenergy-vid-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.aenergy-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    background: rgba(0,0,0,0.4);
}

.aenergy-vid:hover .aenergy-play {
    border-color: var(--W);
    background: rgba(0,0,0,0.65);
}

.aenergy-play-t {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid rgba(255,255,255,0.8);
    margin-left: 3px;
    transition: border-left-color .4s;
}

.aenergy-vid:hover .aenergy-play-t {
    border-left-color: var(--W);
}

.aenergy-vid-meta {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.aenergy-vid-title {
    font-family: var(--mono);
    font-size: .5rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: .18em;
}

.aenergy-vid-dur {
    font-family: var(--mono);
    font-size: .5rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: .1em;
    font-weight: 500;
}

/* ═══ CTA ═══ */
.aenergy-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 36px;
    background: var(--BK);
    border: 1px solid rgba(255,255,255,0);
    font-family: var(--mono);
    font-weight: 500;
    font-size: .62rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--W);
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: background .4s, border-color .4s;
    text-decoration: none;
}

.aenergy-cta:hover {
    background: rgba(0,0,0,0.85);
    border-color: rgba(255,255,255,0.2);
}

.aenergy-cta-arrow {
    display: inline-block;
    width: 16px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    position: relative;
    transition: width .4s;
}

.aenergy-cta-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    border-right: 1px solid rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
}

.aenergy-cta:hover .aenergy-cta-arrow {
    width: 28px;
}

.aenergy-cta-note {
    margin-top: 11px;
    font-family: var(--mono);
    font-size: .5rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: .2em;
    text-align: center;
}

/* ═══ B2B GRAPHIC ═══ */
.aenergy-b2b-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 6vw, 80px);
    margin-bottom: 52px;
    margin-top: 48px;
    width: 100%;
}

.aenergy-b2b-graphic svg {
    width: 200px;
    height: 200px;
}

/* ═══ SCROLL HINT ═══ */
.aenergy-scroll-hint {
    position: fixed;
    bottom: 32px;
    right: 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 50;
}

.aenergy-scroll-hint.on {
    display: flex;
}

.aenergy-scroll-hint span {
    font-family: var(--mono);
    font-size: .48rem;
    letter-spacing: .3em;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
}

.aenergy-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: aenergy-sP 2.2s ease-in-out infinite;
}

/* ═══ DOOR ARROW ═══ */
.aenergy-door-arrow {
    display: block;
    width: clamp(140px, 30vw, 280px);
    height: 1px;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-top: 16px;
    transition: width .5s;
}

.aenergy-door-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid rgba(255,255,255,0.5);
    border-top: 1.5px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    transition: border-color .5s;
}

.aenergy-door:hover .aenergy-door-arrow {
    width: clamp(160px, 35vw, 320px);
}

.aenergy-door:hover .aenergy-door-arrow::after {
    border-color: rgba(255,255,255,1);
}

/* ═══ ANIMATIONS ═══ */
@keyframes aenergy-up {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes aenergy-sP {
    0%, 100% { opacity: .2; }
    50%       { opacity: .85; }
}

/* ═══ MOBILE ═══ */
@media (max-width: 768px) {
    .aenergy-split {
        flex-direction: column;
        height: auto;
        min-height: 80vh;
    }

    .aenergy-split::after {
        width: 50%;
        height: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    }

    .aenergy-door {
        flex: none;
        height: 40vh;
        width: 100%;
        padding: 20px;
    }

    .aenergy-door-ghost {
        font-size: clamp(5rem, 22vw, 9rem);
    }

    .aenergy-door-label {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .e-ae {
        font-size: clamp(1.8rem, 8vw, 3rem);
        letter-spacing: .3em;
    }

    .aenergy-entry-bottom {
        font-size: .42rem;
        letter-spacing: .2em;
        padding: 0 20px;
    }

    .aenergy-funnel {
        padding: 0 24px 100px;
        padding-top: 58px;
    }

    .aenergy-funnel-inner {
        max-width: 100%;
    }

    .aenergy-blk {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .aenergy-headline {
        font-size: clamp(2rem, 9vw, 3.2rem);
        margin-bottom: 20px;
    }

    .aenergy-body {
        font-size: clamp(.9rem, 4vw, 1.05rem);
        margin-bottom: 32px;
        max-width: 100%;
    }

    .aenergy-atom-stage {
        max-width: 320px;
        margin-bottom: 24px;
    }

    .aenergy-atom-wrap {
        margin-top: 32px;
    }

    .aenergy-pillars {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .aenergy-pillar {
        padding: 24px 20px;
    }

    .aenergy-aud {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .aenergy-stats {
        gap: 28px;
    }

    .aenergy-bat-wrap {
        gap: 20px;
    }

    svg.bat {
        width: 52px;
        height: 100px;
    }

    .aenergy-vid {
        max-width: 100%;
    }

    .pull-t {
        font-size: clamp(1.2rem, 5.5vw, 1.8rem);
    }

    .aenergy-cta {
        padding: 14px 28px;
        font-size: .58rem;
        letter-spacing: .25em;
    }

    .aenergy-nav {
        padding: 0 24px;
    }

    .aenergy-nav-ae {
        font-size: 1rem;
    }

    .aenergy-nav-back {
        font-size: .48rem;
    }

    .aenergy-truth {
        padding: 24px 20px;
        max-width: 100%;
    }

    .aenergy-scroll-hint {
        right: 20px;
        bottom: 24px;
    }

    .aenergy-b2b-graphic {
        gap: 16px;
    }

    .aenergy-b2b-graphic svg {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .aenergy-door-label {
        font-size: clamp(1.5rem, 9vw, 2.4rem);
    }

    .aenergy-headline {
        font-size: clamp(1.7rem, 9vw, 2.6rem);
    }

    .aenergy-atom-stage {
        max-width: 260px;
    }

    .e-ae {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}

/* ═══ ELEMENTOR EDITOR PREVIEW ═══ */
.elementor-editor-active .aenergy-screen {
    position: relative;
    opacity: 1;
    pointer-events: all;
}

.elementor-editor-active .aenergy-ikb-bg::after {
    display: none;
}

.elementor-editor-active .aenergy-blk {
    opacity: 1;
    transform: none;
    min-height: auto;
}

.elementor-editor-active #aenergy-cur,
.elementor-editor-active #aenergy-curR {
    display: none;
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .aenergy-blk {
        opacity: 1;
        transform: none;
    }
}
