/* ============================================
   DRPSYCHED.COM — Stylesheet
   ============================================ */

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

:root {
    --bg:        #0d1117;
    --bg-2:      #161b22;
    --bg-card:   #1c2128;
    --text:      #e6edf3;
    --text-2:    #8b949e;
    --accent:    #818cf8;
    --accent-hv: #6366f1;
    --gold:      #f59e0b;
    --gold-hv:   #d97706;
    --border:    #30363d;
    --r:         12px;
    --r-lg:      20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* NAV ---------------------------------------- */

nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,17,23,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-inner {
    max-width: 900px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }

.nav-cta {
    background: var(--accent); color: #fff;
    padding: 8px 20px; border-radius: 8px;
    text-decoration: none; font-size: 14px; font-weight: 600;
    transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hv); }

/* HERO --------------------------------------- */

.hero { padding: 96px 0 80px; text-align: center; }

.credential-bar {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--accent);
}
.dot { color: var(--border); }

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 600; line-height: 1.15;
    letter-spacing: -1px; margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px; color: var(--text-2);
    max-width: 540px; margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background: var(--gold); color: #0d1117;
    padding: 16px 32px; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 16px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-hv); transform: translateY(-2px); }

.btn-secondary {
    display: inline-block;
    background: transparent; color: var(--accent);
    padding: 13px 26px; border-radius: 10px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    border: 1.5px solid var(--accent);
    transition: all 0.2s;
}
.btn-secondary:hover { background: var(--accent); color: #fff; }

.quiz-note { margin-top: 16px; font-size: 13px; color: var(--text-2); }

/* AUTHORITY ---------------------------------- */

.authority {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 52px 0;
}

.authority-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; text-align: center;
}

.authority-number {
    display: block; font-size: 28px; font-weight: 800;
    color: var(--accent); margin-bottom: 6px;
}
.authority-label { font-size: 13px; color: var(--text-2); }

/* QUIZ --------------------------------------- */

.quiz-section { padding: 96px 0; }

.quiz-intro { text-align: center; margin-bottom: 56px; }

.quiz-intro h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2; margin-bottom: 16px;
}
.quiz-intro p { color: var(--text-2); font-size: 17px; }

.quiz-container { max-width: 660px; margin: 0 auto; }

.progress-wrap { margin-bottom: 40px; }

.progress-bar {
    background: var(--bg-card); border-radius: 999px;
    height: 5px; overflow: hidden; margin-bottom: 10px;
}
.progress-fill {
    background: var(--accent); height: 100%;
    border-radius: 999px; width: 0%;
    transition: width 0.4s ease;
}
.progress-text { text-align: right; font-size: 13px; color: var(--text-2); }

/* Question Card */
.question-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 40px;
    animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.question-number {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; color: var(--accent); margin-bottom: 14px;
}
.question-text {
    font-size: 21px; font-weight: 600;
    line-height: 1.4; margin-bottom: 28px;
}

.answers { display: flex; flex-direction: column; gap: 10px; }

.answer-btn {
    background: var(--bg-2); border: 1.5px solid var(--border);
    border-radius: var(--r); padding: 15px 20px;
    cursor: pointer; font-size: 15px; color: var(--text);
    text-align: left; transition: all 0.18s;
    font-family: 'Inter', sans-serif; width: 100%;
}
.answer-btn:hover { border-color: var(--accent); background: rgba(129,140,248,0.07); }
.answer-btn.selected { border-color: var(--accent); background: rgba(129,140,248,0.14); }

.next-btn { margin-top: 24px; width: 100%; text-align: center; }
.next-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* Email Gate */
.email-gate {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 56px 40px;
    text-align: center; animation: fadeUp 0.4s ease;
}
.gate-icon { font-size: 36px; color: var(--accent); margin-bottom: 20px; }
.email-gate h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px; margin-bottom: 12px;
}
.email-gate > p { color: var(--text-2); font-size: 16px; margin-bottom: 32px; }

.email-form {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 380px; margin: 0 auto;
}
.email-form input {
    background: var(--bg-2); border: 1.5px solid var(--border);
    border-radius: 10px; padding: 14px 18px;
    font-size: 16px; color: var(--text); outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}
.email-form input:focus { border-color: var(--accent); }
.email-form input::placeholder { color: var(--text-2); }
.email-form .btn-primary { width: 100%; text-align: center; }

.privacy-note { font-size: 12px; color: var(--text-2); margin-top: 14px; }

/* Results */
.result-card {
    background: var(--bg-card); border: 1.5px solid var(--accent);
    border-radius: var(--r-lg); padding: 48px 40px;
    text-align: center; animation: fadeUp 0.4s ease;
}
.result-label {
    display: inline-block;
    background: rgba(129,140,248,0.12); color: var(--accent);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 6px 16px;
    border-radius: 999px; margin-bottom: 22px;
}
.result-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px; margin-bottom: 16px; line-height: 1.3;
}
.result-body {
    color: var(--text-2); font-size: 16px; line-height: 1.75;
    margin-bottom: 32px; max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.result-cta-note { font-size: 13px; color: var(--text-2); margin-top: 14px; }

.btn-large { padding: 20px 40px; font-size: 18px; display: block; width: 100%; text-align: center; }

.hidden { display: none !important; }

/* ABOUT -------------------------------------- */

.about {
    padding: 96px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid; grid-template-columns: 260px 1fr;
    gap: 64px; align-items: center;
}

.headshot {
    width: 100%;
    border-radius: var(--r-lg);
    display: block;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.section-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px;
}
.about-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.3; margin-bottom: 24px;
}
.about-content p { color: var(--text-2); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-content .btn-secondary { margin-top: 8px; }

/* PRODUCT ------------------------------------ */

.product { padding: 96px 0; }

.product-inner { max-width: 660px; margin: 0 auto; text-align: center; }

.product-badge {
    display: inline-block;
    background: rgba(245,158,11,0.1); color: var(--gold);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 8px 20px; border-radius: 999px;
    border: 1px solid rgba(245,158,11,0.25); margin-bottom: 24px;
}
.product h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 1.25; margin-bottom: 14px;
}
.product-sub { color: var(--text-2); font-size: 16px; margin-bottom: 48px; }

.value-stack {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden;
    margin-bottom: 40px; text-align: left;
}
.value-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 24px; border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.value-item:last-child { border-bottom: none; }
.value-item.bonus { background: rgba(129,140,248,0.04); }
.value-item.bonus .value-name { color: var(--accent); }
.value-price { color: var(--text-2); font-size: 13px; white-space: nowrap; margin-left: 16px; }
.value-total {
    display: flex; justify-content: space-between;
    padding: 18px 24px; font-weight: 700; font-size: 15px;
    background: var(--bg-2); color: var(--text-2);
    border-top: 1px solid var(--border);
}

.price-block {
    padding: 40px; background: var(--bg-card);
    border: 1.5px solid var(--gold); border-radius: var(--r-lg);
}
.price-compare { font-size: 14px; color: var(--text-2); margin-bottom: 8px; }
.price-main {
    font-size: 76px; font-weight: 800; color: var(--gold);
    line-height: 1; margin-bottom: 16px; letter-spacing: -3px;
}
.price-anchor {
    font-size: 14px; color: var(--text-2);
    line-height: 1.65; margin-bottom: 32px;
}
.guarantee { margin-top: 16px; font-size: 13px; color: var(--text-2); }

/* FOOTER ------------------------------------- */

footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 56px 0;
}
.footer-inner { text-align: center; }
.footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.footer-tagline { color: var(--text-2); font-size: 14px; margin-bottom: 10px; }
.footer-links { margin-bottom: 24px; }
.footer-links a { color: var(--accent); font-size: 13px; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-disclaimer {
    color: var(--text-2); font-size: 12px; opacity: 0.65;
    max-width: 680px; margin: 0 auto; line-height: 1.75;
}
.footer-disclaimer a { color: var(--accent); text-decoration: none; }
.footer-disclaimer a:hover { text-decoration: underline; }
.footer-link-sep { color: var(--border); }

/* QUIZ NOTICE -------------------------------- */

.quiz-notice {
    background: rgba(129,140,248,0.05);
    border: 1px solid rgba(129,140,248,0.18);
    border-radius: var(--r);
    padding: 13px 20px;
    margin: 0 auto 32px;
    max-width: 660px;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.65;
    text-align: center;
}
.quiz-notice strong { color: var(--text); }
.quiz-notice a { color: var(--accent); text-decoration: none; }
.quiz-notice a:hover { text-decoration: underline; }

.result-disclaimer {
    font-size: 11px;
    color: var(--text-2);
    opacity: 0.55;
    margin-top: 22px;
    line-height: 1.7;
}
.result-disclaimer a { color: var(--accent); text-decoration: none; }
.result-disclaimer a:hover { text-decoration: underline; }

/* LEGAL PAGE --------------------------------- */

.legal-page { padding: 80px 0 120px; }

.legal-page-header { text-align: center; margin-bottom: 64px; }
.legal-page-header .section-label { margin-bottom: 16px; }
.legal-page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2; margin-bottom: 20px;
}
.legal-page-header p {
    color: var(--text-2); font-size: 16px; line-height: 1.75;
    max-width: 580px; margin: 0 auto;
}

.legal-section {
    border-top: 1px solid var(--border);
    padding: 36px 0;
}
.legal-section:last-of-type { border-bottom: 1px solid var(--border); }
.legal-section h2 {
    font-size: 16px; font-weight: 700;
    color: var(--text); margin-bottom: 14px; letter-spacing: -0.2px;
}
.legal-section p, .legal-section ul {
    color: var(--text-2); font-size: 15px; line-height: 1.85; margin-bottom: 14px;
}
.legal-section p:last-child, .legal-section ul:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 20px; }
.legal-section li { margin-bottom: 8px; }

.legal-highlight {
    background: rgba(129,140,248,0.06);
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0 var(--r) var(--r) 0;
    margin: 16px 0;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
}
.legal-highlight strong { color: var(--text); }

.legal-footer-note {
    margin-top: 56px; padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-2);
    line-height: 1.75; text-align: center;
}
.legal-footer-note a { color: var(--accent); text-decoration: none; }
.legal-footer-note a:hover { text-decoration: underline; }

/* RESPONSIVE --------------------------------- */

@media (max-width: 768px) {
    .authority-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 220px; margin: 0 auto; }
    .credential-bar { font-size: 11px; }
    .question-card, .email-gate, .result-card { padding: 28px 20px; }
    .price-block { padding: 28px 20px; }
    .price-main { font-size: 60px; }
    .hero { padding: 64px 0 52px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 16px; }
    .quiz-intro h2 { font-size: 24px; }
    .value-item { font-size: 14px; }
}
