/* Landing — tegoapp.com (responsive, aligned) */

:root {
    --a2z-max: 420px;
    --a2z-pad: 16px;
    --a2z-pink: #ca34c1;
    --a2z-magenta: #ff00ec;
    --a2z-yellow: #ffeb00;
    --a2z-orange: #ffa726;
    --a2z-red: #8f0000;
    --a2z-gap: 14px;
    --a2z-btn-gap: 22px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body.a2z-landing {
    background: #000;
    color: #fff;
    font-family: Poppins, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.a2z-page {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 var(--a2z-pad);
}

/* ── Hero ── */
.a2z-hero {
    text-align: center;
    padding: 20px 0 8px;
}

.a2z-title {
    font-size: clamp(1.15rem, 4.2vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 8px;
}

.a2z-title .pink {
    color: var(--a2z-pink);
    display: block;
    margin-top: 4px;
}

.a2z-sub {
    font-size: clamp(0.85rem, 3.2vw, 1.25rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 4px;
}

/* ── Video ── */
.a2z-video-shell {
    max-width: var(--a2z-max);
    margin: 14px auto 0;
    width: 100%;
}

.a2z-video-wrap {
    width: 100%;
    border: 2px dashed var(--a2z-magenta);
    background: #000;
    border-radius: 2px;
}

.a2z-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #000;
    overflow: hidden;
}

.a2z-video-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    pointer-events: none;
}

.a2z-video-inner video.is-playing {
    pointer-events: auto;
}

.a2z-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: #000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.a2z-video-overlay.is-hidden {
    display: none;
}

.a2z-play-icon {
    width: 64px;
    height: 64px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.a2z-play-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    margin-left: 3px;
}

.a2z-play-label {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    padding: 0 12px;
}

/* ── CTA zone (buttons aligned, clear gap between) ── */
.a2z-cta-zone {
    max-width: var(--a2z-max);
    margin: 0 auto;
    padding: var(--a2z-gap) 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.a2z-btn-block {
    width: 100%;
}

.a2z-btn-block + .a2z-btn-block {
    margin-top: var(--a2z-btn-gap);
}

.a2z-countdown-wrap {
    width: 100%;
    margin-top: var(--a2z-btn-gap);
}

.a2z-btn {
    display: block;
    width: 100%;
    font-family: Poppins, sans-serif;
    font-size: clamp(15px, 4.2vw, 22px);
    font-weight: 700;
    line-height: 1.35;
    color: #000;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(0deg, var(--a2z-yellow) 0%, var(--a2z-orange) 100%);
    border-radius: 8px;
    padding: 14px 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
    transition: filter 0.15s ease, transform 0.15s ease;
    isolation: isolate;
}

.a2z-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.a2z-btn:active {
    transform: translateY(0);
}

.a2z-btn-buy {
    padding: 14px 12px;
}

.a2z-btn-line {
    display: block;
    line-height: 1.3;
}

.a2z-btn-offer {
    display: block;
    margin-top: 6px;
    font-size: 0.92em;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.a2z-btn s {
    opacity: 0.8;
}

/* Visibility */
.hide-mobile {
    display: block;
}

.hide-desktop {
    display: none;
}

/* Countdown */

.a2z-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 4px 0 8px;
}

.a2z-cdt-block {
    text-align: center;
    min-width: 48px;
}

.a2z-cdt-time {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--a2z-yellow);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.a2z-cdt-label {
    font-size: 0.65rem;
    color: #ccc;
    text-transform: lowercase;
}

.a2z-cdt-sep {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--a2z-yellow);
    padding-bottom: 10px;
}

/* Divider */
.a2z-divider {
    max-width: var(--a2z-max);
    margin: 8px auto;
    padding: 0;
}

.a2z-divider span {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Reviews */
.a2z-reviews-section {
    max-width: var(--a2z-max);
    margin: 20px auto 0;
    text-align: center;
}

.a2z-reviews-img img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

/* FAQ */
.a2z-faq-section {
    max-width: var(--a2z-max);
    margin: 28px auto 0;
    padding: 0 0 32px;
    text-align: center;
}

.a2z-faq-heading {
    font-size: clamp(1.2rem, 4vw, 1.75rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.a2z-faq-heading .pink {
    color: var(--a2z-pink);
}

.a2z-accordion {
    width: 100%;
    text-align: left;
}

.a2z-acc-item {
    margin-bottom: 8px;
}

.a2z-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid #7998fc;
    border-radius: 10px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-size: clamp(0.82rem, 3vw, 0.95rem);
    font-weight: 600;
    color: #111;
    line-height: 1.35;
}

.a2z-acc-header span:first-child {
    flex: 1;
    min-width: 0;
}

.a2z-acc-item.is-open .a2z-acc-header {
    background: var(--a2z-pink);
    color: #fff;
    border-color: var(--a2z-pink);
}

.a2z-acc-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #3652ad;
}

.a2z-acc-item.is-open .a2z-acc-icon {
    color: #fff;
}

.a2z-acc-body {
    display: none;
    padding: 12px 14px;
    background: #c8d5ff;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid #7998fc;
    border-radius: 0 0 10px 10px;
    border-top: none;
}

.a2z-acc-body a {
    color: var(--a2z-pink);
}

.a2z-acc-item.is-open .a2z-acc-body {
    display: block;
}

/* Footer */
.a2z-footer {
    background: var(--a2z-red);
    margin: 0 calc(-1 * var(--a2z-pad));
    padding: 28px var(--a2z-pad) 24px;
    text-align: center;
    color: #fff;
}

.a2z-footer-email {
    font-size: clamp(0.85rem, 3vw, 1rem);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.a2z-footer-email a {
    color: #fff;
    text-decoration: underline;
}

.a2z-footer-links {
    font-size: clamp(0.72rem, 2.8vw, 0.85rem);
    line-height: 1.65;
    margin-bottom: 14px;
}

.a2z-footer-links a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.a2z-footer-links a:hover {
    text-decoration: underline;
}

.a2z-footer-copy {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.a2z-disclaimer {
    font-size: 0.7rem;
    line-height: 1.45;
    opacity: 0.92;
    max-width: 540px;
    margin: 0 auto;
}

/* Subtle CTA pulse — no heavy shake (less lag) */
@keyframes a2z-soft-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.a2z-cta-pulse .a2z-btn-pulse {
    animation: a2z-soft-pulse 2.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .a2z-cta-pulse .a2z-btn-pulse {
        animation: none;
    }
}

/* ── Desktop (768+) ── */
@media (min-width: 768px) {
    :root {
        --a2z-max: 400px;
        --a2z-pad: 20px;
    }

    .hide-mobile {
        display: block !important;
    }

    .hide-desktop {
        display: none !important;
    }

    .a2z-countdown-wrap {
        display: block;
    }

    .a2z-hero {
        padding-top: 28px;
    }

    .a2z-title .pink {
        display: inline;
        margin-top: 0;
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }
}

/* ── Demo page video block ── */
.a2z-demo-video {
    max-width: var(--a2z-max);
    margin: 0 auto 16px;
}

.a2z-demo-video .a2z-video-shell {
    margin-top: 0;
}

    /* Demo: reduce heavy animations for smoother scroll */
body.demo-a2z .aurora,
body.demo-a2z .mesh-gradient,
body.demo-a2z .noise-overlay {
    animation: none !important;
    opacity: 0.35;
}

body.demo-a2z .demo-page .container {
    max-width: 620px;
    padding-left: 16px;
    padding-right: 16px;
}

body.demo-a2z .a2z-demo-video {
    margin-top: 8px;
    margin-bottom: 20px;
}
