@charset "utf-8";
/*
Theme Name:  Dynamic Output Mailer — Neon Reference (v3) Component Layer
Version:     3.0
Description: Page-level components loaded AFTER style.css.
             Contains: auth pages, FAQ, pricing, testimonials, typed cursor,
             back-to-top, preloader, marquee, member dashboard tiles.
             No duplication of style.css — this file extends it only.

  TABLE OF CONTENTS
  -----------------------------------------------------------------
  01. Preloader
  02. Back To Top
  03. Auth Pages (login / signup / lost password)
  04. FAQ Accordion
  05. Pricing / Upgrade Tables
  06. Testimonials
  07. Typed.js Cursor
  08. Logo Marquee / Trust Row
  09. Member Dashboard Tiles
  10. Notice Ribbon
  11. Timeline
  12. Misc Helpers
  -----------------------------------------------------------------
*/


/* =================================================================
   01. PRELOADER
================================================================= */
.dom-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity .5s ease, visibility .5s ease;
}
.dom-preloader.is-done { opacity: 0; visibility: hidden; }

.dom-spinner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid rgba(255, 123, 0, 0.18);
    border-top-color: var(--orange);
    animation: spinSlow .9s linear infinite;
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.35);
}


/* =================================================================
   02. BACK TO TOP
================================================================= */
.dom-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--grad-fire);
    color: #0a0d14;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    box-shadow: 0 10px 28px rgba(255, 123, 0, 0.42);
    transition: opacity var(--t), visibility var(--t), transform var(--t), box-shadow var(--t);
}
.dom-top i { margin: 0; }
.dom-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.dom-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 38px rgba(255, 123, 0, 0.6);
}

@media (max-width: 575px) {
    .dom-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}


/* =================================================================
   03. AUTH PAGES (login / signup / lost password)
================================================================= */
.dom-auth {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px) 0;
    min-height: 60vh;
    overflow: hidden;
}

.dom-auth-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: var(--panel);
    background-image: linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line-2);
    border-radius: var(--r-xl);
    padding: clamp(28px, 4vw, 46px);
    box-shadow: var(--sh-lg), 0 0 60px rgba(255, 123, 0, 0.08);
}

/* Neon top edge */
.dom-auth-card::before {
    content: "";
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-fire);
    box-shadow: 0 0 18px rgba(255, 123, 0, 0.6);
}

.dom-auth-head { text-align: center; margin-bottom: 30px; }
.dom-auth-head img { max-width: 200px; margin-bottom: 18px; }
.dom-auth-head h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin: 0 0 8px;
}
.dom-auth-head p {
    color: var(--gray-2);
    font-size: 0.92rem;
    margin: 0;
}

/* Form rows inside auth card */
.dom-auth-card .form-group { margin-bottom: 18px; }
.dom-auth-card .btn,
.dom-auth-card input[type="submit"] { width: 100%; }

.dom-auth-foot {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-2);
}
.dom-auth-foot a { color: var(--orange); font-weight: 700; }
.dom-auth-foot a:hover { color: var(--amber); }

/* Split auth layout: form + benefits */
.dom-auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}
.dom-auth-split .dom-auth-card { max-width: none; }

.dom-auth-benefits { list-style: none; margin: 26px 0 0; padding: 0; }
.dom-auth-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 16px;
    color: var(--gray-2);
    font-size: 0.94rem;
}
.dom-auth-benefits li i {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(232,51,13,.12);
    border: 1px solid var(--line-red);
    color: var(--orange);
    font-size: 0.66rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 3px 0 0;
}

@media (max-width: 991px) {
    .dom-auth-split { grid-template-columns: 1fr; gap: 34px; }
    .dom-auth-split .dom-auth-intro { text-align: center; }
    .dom-auth-benefits li { text-align: left; }
}


/* =================================================================
   04. FAQ ACCORDION
================================================================= */
.dom-faq { max-width: 860px; margin: 0 auto; }

.dom-faq-item {
    background: var(--panel);
    background-image: linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color var(--t), box-shadow var(--t);
}
.dom-faq-item:hover { border-color: var(--line-red); }
.dom-faq-item.is-open {
    border-color: var(--line-red);
    box-shadow: 0 0 34px rgba(255, 123, 0, 0.12);
}

.dom-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--t-fast);
}
.dom-faq-q:hover { color: var(--orange); }
.dom-faq-q i {
    flex-shrink: 0;
    color: var(--orange);
    font-size: 0.82rem;
    margin: 0;
    transition: transform var(--t);
}
.dom-faq-item.is-open .dom-faq-q i { transform: rotate(180deg); }

.dom-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow), padding var(--t);
    padding: 0 24px;
    color: var(--gray-2);
    font-size: 0.92rem;
    line-height: 1.85;
}
.dom-faq-item.is-open .dom-faq-a { max-height: 900px; padding: 0 24px 22px; }


/* =================================================================
   05. PRICING / UPGRADE TABLES
================================================================= */
.dom-price-card {
    position: relative;
    background: var(--panel);
    background-image: linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.dom-price-card:hover {
    transform: translateY(-8px);
    border-color: var(--line-red);
    box-shadow: var(--sh), 0 0 44px rgba(255, 123, 0, 0.14);
}

.dom-price-card.is-featured {
    border-color: var(--orange);
    box-shadow: 0 0 50px rgba(255, 123, 0, 0.2);
    transform: scale(1.03);
}
.dom-price-card.is-featured:hover { transform: scale(1.03) translateY(-8px); }

.price-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--grad-fire);
    color: #0a0d14;
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: var(--r-pill);
    box-shadow: 0 6px 18px rgba(255, 123, 0, 0.4);
}

.price-name {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}
.price-amount {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.price-amount small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-3);
}
.price-period {
    font-size: 0.82rem;
    color: var(--gray-3);
    margin-bottom: 26px;
}

.price-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    text-align: left;
    flex: 1;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.89rem;
    color: var(--gray-2);
    margin-bottom: 13px;
}
.price-features li i { color: var(--orange); font-size: 0.72rem; margin: 5px 0 0; flex-shrink: 0; }
.price-features li.is-off { opacity: 0.4; }
.price-features li.is-off i { color: var(--gray-3); }


/* =================================================================
   06. TESTIMONIALS
================================================================= */
.dom-quote {
    position: relative;
    background: var(--panel);
    background-image: linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 28px 28px;
    height: 100%;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.dom-quote:hover {
    transform: translateY(-6px);
    border-color: var(--line-red);
    box-shadow: var(--sh), 0 0 36px rgba(255, 123, 0, 0.1);
}

.dom-quote::before {
    content: "\201C";
    position: absolute;
    top: 6px; left: 22px;
    font-family: Georgia, serif;
    font-size: 4.4rem;
    line-height: 1;
    color: var(--orange);
    opacity: 0.22;
}

.dom-quote p {
    position: relative;
    font-size: 0.94rem;
    color: var(--gray-2);
    line-height: 1.85;
    font-style: italic;
    margin: 0 0 22px;
}

.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--line-red);
}
.quote-author-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--white);
    line-height: 1.3;
}
.quote-author-role { font-size: 0.76rem; color: var(--gray-3); }

.quote-stars { color: var(--amber); font-size: 0.78rem; margin-bottom: 14px; }
.quote-stars i { margin-right: 1px; }


/* =================================================================
   07. TYPED.JS CURSOR
================================================================= */
#typed-strings { display: none; }

.typed-cursor {
    color: var(--orange);
    font-weight: 300;
    animation: blink 1s infinite;
}

.typed-line {
    min-height: 1.2em;
    background: var(--grad-fire);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--orange);
}


/* =================================================================
   08. LOGO MARQUEE / TRUST ROW
================================================================= */
.dom-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    padding: 30px 0;
    opacity: 0.55;
}
.dom-trust img { max-height: 30px; width: auto; filter: grayscale(100%) brightness(2.4); }
.dom-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-3);
}
.dom-trust-item i { color: var(--orange); margin: 0; }


/* =================================================================
   09. MEMBER DASHBOARD TILES
================================================================= */
.dom-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--panel);
    background-image: linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 24px;
    overflow: hidden;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.dom-tile:hover {
    transform: translateY(-5px);
    border-color: var(--line-red);
    box-shadow: var(--sh-sm), 0 0 30px rgba(255, 123, 0, 0.12);
}

.tile-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 15px;
    background: rgba(232,51,13,.12);
    border: 1px solid var(--line-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.25rem;
}
.tile-icon i { margin: 0; }
.tile-icon.is-blue {
    background: rgba(47,157,255,.12);
    border-color: var(--line-blue);
    color: var(--blue);
}

.tile-value {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
}
.tile-label {
    font-size: 0.72rem;
    color: var(--gray-3);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-top: 3px;
}


/* =================================================================
   10. NOTICE RIBBON
================================================================= */
.dom-ribbon {
    position: relative;
    background: rgba(232,51,13,.12);
    border-top: 1px solid var(--line-red);
    border-bottom: 1px solid var(--line-red);
    padding: 13px 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray);
}
.dom-ribbon strong { color: var(--orange); }
.dom-ribbon a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
}
.dom-ribbon a:hover { color: var(--amber); }

.dom-ribbon-blue {
    background: rgba(47,157,255,.12);
    border-color: var(--line-blue);
}
.dom-ribbon-blue strong, .dom-ribbon-blue a { color: var(--blue); }


/* =================================================================
   11. TIMELINE
================================================================= */
.dom-timeline { position: relative; padding-left: 34px; }
.dom-timeline::before {
    content: "";
    position: absolute;
    left: 11px; top: 6px; bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--orange), rgba(35, 183, 255, 0.5), transparent);
}
.dom-timeline-item { position: relative; padding-bottom: 30px; }
.dom-timeline-item::before {
    content: "";
    position: absolute;
    left: -29px; top: 5px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 123, 0, 0.16), 0 0 16px rgba(255, 123, 0, 0.6);
}
.dom-timeline-item h6 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 5px;
}
.dom-timeline-item p {
    font-size: 0.88rem;
    color: var(--gray-2);
    margin: 0;
}


/* =================================================================
   12. MISC HELPERS
================================================================= */
/* Gradient hairline used between stacked sections */
.hairline {
    height: 1px;
    border: 0;
    margin: 0;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* Icon list with orange checks */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-2);
    font-size: 0.93rem;
}
.check-list li i {
    flex-shrink: 0;
    color: var(--orange);
    font-size: 0.8rem;
    margin: 5px 0 0;
    filter: drop-shadow(0 0 8px rgba(255, 123, 0, 0.5));
}

/* Ratio box for responsive video embeds */
.ratio-16x9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-2);
    box-shadow: var(--sh);
}
.ratio-16x9 > iframe,
.ratio-16x9 > video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Screen-reader-friendly skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: var(--orange);
    color: #0a0d14;
    padding: 12px 20px;
    border-radius: 0 0 var(--r-sm) 0;
    font-weight: 700;
}
.skip-link:focus { left: 0; color: #0a0d14; }
