/* ==========================================
   DISCOVER PAGE — Simple Mobile-First
   ========================================== */

.discover-body {
    background-color: var(--color-black);
    color: var(--color-white);
    min-height: 100vh;
    font-family: var(--font-primary);
}

/* ==========================================
   NAV
   ========================================== */
.discover-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.discover-logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--color-white);
    text-decoration: none;
}

.discover-logo span {
    color: var(--color-accent);
}

.discover-nav-cta {
    padding: 0.55rem 1.2rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.discover-nav-cta:hover {
    background-color: var(--color-accent-light);
}

/* ==========================================
   HERO
   ========================================== */
.discover-hero {
    padding: 120px 1.5rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.discover-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center top, rgba(107, 70, 193, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.discover-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-light);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: dfadeUp 0.7s ease 0.1s forwards;
}

.discover-hero-title {
    font-size: clamp(3rem, 14vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--color-white);
    opacity: 0;
    animation: dfadeUp 0.7s ease 0.25s forwards;
}

.discover-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: dfadeUp 0.7s ease 0.4s forwards;
}

.discover-book-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 1.1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 2px;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    opacity: 0;
    animation: dfadeUp 0.7s ease 0.55s forwards;
}

.discover-book-btn:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.45);
}

.discover-website-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
    opacity: 0;
    animation: dfadeUp 0.7s ease 0.65s forwards;
}

.discover-website-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   QUICK INFO
   ========================================== */
.discover-info {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.discover-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.discover-info-icon {
    color: var(--color-accent-light);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
}

/* ==========================================
   TESTIMONIAL
   ========================================== */
.discover-review {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background-color: rgba(107, 70, 193, 0.07);
    border-top: 1px solid rgba(107, 70, 193, 0.18);
    border-bottom: 1px solid rgba(107, 70, 193, 0.18);
    max-width: 100%;
}

.discover-review-stars {
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    color: var(--color-accent-light);
}

.discover-review-quote {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin: 0 auto 1rem;
}

.discover-review-author {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================
   CONTACT
   ========================================== */
.discover-contact {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.discover-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.discover-contact-btn:hover {
    background-color: rgba(107, 70, 193, 0.1);
    border-color: rgba(107, 70, 193, 0.35);
    color: var(--color-white);
}

.discover-contact-btn span {
    font-size: 1.1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.discover-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.discover-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.discover-footer a:hover {
    color: var(--color-white);
}

/* ==========================================
   ANIMATION
   ========================================== */
@keyframes dfadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
