/* Mimik Creations — /unlimited page-specific styles.
   Loads AFTER style.css. All site chrome AND hero components (header, nav,
   burger, theme toggle, footer, grid background, loader, .hero, .glass-card
   floating cards, .card-1/2/3, doodle arrows, .circular-badge, .huge-text,
   .appear reveals) come from style.css and are theme-aware.

   This file adds ONLY what is unique to this page:
   - .u-card  → straight, in-flow content card (NOT the rotated hero card)
   - trial offer orbs/pulse, pricing, claim modal, side scroll dots. */
:root {
    --bg-color: var(--canvas);
    --text-primary: var(--white);
    --text-secondary: rgba(255, 255, 255, 0.78);
    --neon-accent: var(--neon-green);
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.left-align { margin: 0 0 1.5rem 0 !important; }
.center-align { margin: 0 auto 1.5rem !important; }
.full-width { width: 100%; display: block; text-align: center; }

/* Active state for this page's pill in the site nav */
.nav-pill.active {
    background: var(--neon-accent);
    color: #111111;
    border-color: var(--neon-accent);
    font-weight: 700;
}
.nav-pill.active:hover { background: var(--neon-accent); color: #111111; }

/* Hero: subtitle + mobile CTA under the site-standard headline */
.hero-text .subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin: 2rem auto 0;
    font-weight: 400;
    max-width: 560px;
}
.hero-btn { margin-top: 2rem; }

/* ── u-card: straight glass content card (page-scoped) ── */
.u-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.u-card:not(.modal-card):hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}
.u-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.u-card p { color: var(--text-secondary); font-size: 1rem; }
.u-card .card-image {
    width: 60px; height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
}

/* Sections */
section { padding: 5.5rem 0; border-top: 1px solid var(--glass-border); }
.hero { border-top: none; }
.bg-dark {
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
    padding: 6.5rem 0;
}
.section-header-left { margin-bottom: 2.5rem; max-width: 800px; }
/* Section headings: proportioned down from the site's 11rem hero scale */
.section-header-left .huge-text {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    letter-spacing: -2px;
    line-height: 1.02;
}
.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-top: 1.5rem;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-number {
    font-size: 3.5rem; margin-bottom: 1rem; line-height: 1;
    font-weight: 900;
}

/* Anchored sections land below the fixed header */
section[id] { scroll-margin-top: 120px; }

/* Pricing */
.pricing-card { max-width: 480px; margin: 0 auto; text-align: center; }
.pricing-card .card-image { margin: 0 auto 1.5rem; }
.price { font-size: clamp(4rem, 8vw, 5.5rem); font-weight: 900; margin: 1.5rem 0; }
.price span { font-size: 2.5rem; vertical-align: top; }
.price .period { font-size: 1.2rem; font-weight: 500; color: var(--text-secondary); }
.pricing-features { list-style: none; text-align: left; margin: 2.5rem 0; padding: 0; }
.pricing-features li { margin-bottom: 1rem; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }

/* Trial Offer */
.trial-offer { position: relative; overflow: hidden; }
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}
.orb-1 {
    width: 400px; height: 400px;
    background: rgba(189, 252, 8, 0.12);
    top: -100px; left: -100px;
    animation: drift 10s infinite alternate;
}
.orb-2 {
    width: 500px; height: 500px;
    background: rgba(10, 50, 222, 0.25);
    bottom: -200px; right: -100px;
    animation: drift 15s infinite alternate-reverse;
}
@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}
.pulse-glow { animation: pulse-border 3s infinite alternate; }
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 20px rgba(189, 252, 8, 0.05), inset 0 0 20px rgba(189, 252, 8, 0.02);
        border-color: rgba(189, 252, 8, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(189, 252, 8, 0.3), inset 0 0 30px rgba(189, 252, 8, 0.05);
        border-color: rgba(189, 252, 8, 0.8);
    }
}

/* Side scroll dots — quiet wayfinding on the right edge */
.scroll-dots {
    position: fixed; right: 24px; top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex; flex-direction: column; gap: 14px;
}
.scroll-dots a {
    position: relative;
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}
.scroll-dots a:hover { background: #ffffff; }
.scroll-dots a.active {
    background: var(--neon-accent);
    border-color: var(--neon-accent);
    box-shadow: 0 0 12px rgba(189, 252, 8, 0.6);
}
.scroll-dots .dot-label {
    position: absolute; right: 24px; top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: #ffffff;
    background: rgba(2, 5, 17, 0.85);
    border: 1px solid var(--glass-border);
    padding: 0.3rem 0.7rem; border-radius: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.scroll-dots a:hover .dot-label,
.scroll-dots a.active .dot-label { opacity: 1; }

/* Buttons used as <button> */
button.btn-outline { font-family: inherit; cursor: pointer; background: transparent; }

/* Coming-soon subscribe state */
.btn-soon {
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: default;
    letter-spacing: 1px;
}
.soon-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.link-lime {
    background: none; border: none; padding: 0;
    font-family: inherit; font-size: inherit;
    color: var(--neon-accent);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}
.link-lime:hover { opacity: 0.85; }

/* Claim modal */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(2, 5, 30, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
    position: relative;
    width: 100%; max-width: 520px;
    background: rgba(5, 8, 25, 0.95);
    text-align: left;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute; top: 18px; right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 1rem; cursor: pointer;
    transition: all 0.3s ease;
}
.modal-close:hover { background: var(--neon-accent); color: #111111; }
.modal-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; padding-right: 2.5rem; color: #ffffff; }
.modal-sub { color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; margin-bottom: 1.75rem; }

#claimForm label {
    display: block;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin: 1.1rem 0 0.4rem;
    color: #ffffff;
}
#claimForm label .optional { color: rgba(255, 255, 255, 0.6); font-weight: 400; text-transform: none; }
#claimForm input[type="text"],
#claimForm input[type="email"] {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit; font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
#claimForm input:focus { border-color: var(--neon-accent); }
#claimForm input::placeholder { color: rgba(255, 255, 255, 0.35); }
#claimForm .btn-submit {
    margin-top: 1.75rem;
    background: var(--neon-accent);
    color: #111111;
    border: 2px solid var(--neon-accent);
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
}
#claimForm .btn-submit:disabled { opacity: 0.7; cursor: default; }
.form-status { margin-top: 1rem; font-size: 0.95rem; min-height: 1.2em; }
.form-status.success { color: var(--neon-accent); font-weight: 600; }
.form-status.error { color: #ff8a8a; font-weight: 600; }

/* Mobile Utilities */
.mobile-only { display: none; }
.mobile-sticky-cta { display: none; }

/* ── Responsive (page content only — chrome + hero cards handled by
      style.css, which hides floating cards/doodles/badge ≤900px) ── */
@media (max-width: 1024px) {
    .scroll-dots { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 0; }
    .bg-dark { padding: 4.5rem 0; }
    .section-header-left { text-align: center; margin: 0 auto 2rem; }
}

@media (max-width: 900px) {
    /* Floating cards are hidden — surface the CTA in the hero instead */
    .mobile-only { display: inline-block; }

    /* Hero: the site's mini cards (style.css MOBILE ROUND 3) are absolute and
       collide with our taller hero (subtitle + CTA). Put them in the flow:
       one above the headline (right), one below the CTA (left). */
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
        min-height: 0; /* hug content — no empty bands above/below */
        /* header is position:sticky (in flow, ~120px) — no overlay to clear */
        padding-top: 16px;
        padding-bottom: 36px;
    }
    .hero .glass-card {
        position: static !important;
        width: 165px;
    }
    .card-1 { order: -1; align-self: flex-end; margin-right: 4%; transform: rotate(4deg); }
    .card-2 { align-self: flex-start; margin-left: 4%; transform: rotate(-4deg); }
    .card-3 { display: none !important; }
    .u-card { text-align: center; }
    .u-card .card-image, .left-align { margin: 0 auto 1.5rem !important; }
    .pricing-features { text-align: left; }
}

@media (max-width: 768px) {
    body { padding-bottom: 80px; /* space for the sticky CTA */ }
    section { padding: 3.25rem 0; }
    .bg-dark { padding: 4rem 0; }

    /* Sticky Mobile Bottom CTA */
    .mobile-sticky-cta {
        display: block; position: fixed; bottom: 0; left: 0; width: 100%;
        padding: 1rem 5%; background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px); border-top: 1px solid var(--glass-border);
        z-index: 100;
    }
    .sticky-btn { background: var(--neon-accent); color: #111111; border: none; }
}
