/* ==========================================================================
   Bitcoin Will Tools — Ghost Theme
   "Day 1" Style: Serene, editorial, warm
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #2C2C2C;
    background: #F0EDE6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2C2C2C;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Background — Painted Landscape Gradient Placeholder
   -------------------------------------------------------------------------- */

/* Replace this gradient with a real painted landscape image:
   background: url('/assets/images/landscape.webp') center/cover fixed; */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(232, 201, 106, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 25% 70%, rgba(122, 158, 111, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 65%, rgba(79, 121, 66, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 85%, rgba(212, 168, 67, 0.3) 0%, transparent 40%),
        linear-gradient(
            180deg,
            #A8C8D8 0%,
            #C4D9E8 12%,
            #d6dfe8 20%,
            #E8C96A 35%,
            #e2c06a 42%,
            #9cb87e 52%,
            #7A9E6F 62%,
            #5a8a52 72%,
            #4F7942 82%,
            #5c8a3e 90%,
            #D4A843 100%
        );
    will-change: transform;
}

/* --------------------------------------------------------------------------
   Content Card — Frosted Parchment
   -------------------------------------------------------------------------- */

.content-card {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 90%;
    margin: 60px auto;
    background: rgba(240, 237, 230, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    padding: 28px 56px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    letter-spacing: 0.01em;
}

.header-cta {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #F0EDE6;
    background: #2C2C2C;
    padding: 10px 24px;
    border-radius: 100px;
    transition: background 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-cta:hover {
    background: #444;
}

/* --------------------------------------------------------------------------
   Sections — General
   -------------------------------------------------------------------------- */

.section {
    padding: 0 56px;
}

.section-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.section-headline {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2C2C2C;
    margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero .section-inner {
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.01em;
    color: #2C2C2C;
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6B6560;
    margin-bottom: 48px;
}

.hero-privacy {
    font-size: 0.9rem;
    color: #6B6560;
    line-height: 1.55;
    margin-top: 32px;
}

.hero-bonus {
    font-size: 0.95rem;
    color: #6B6560;
    line-height: 1.55;
    margin-top: 16px;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Signup Forms
   -------------------------------------------------------------------------- */

.signup-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid rgba(107, 101, 96, 0.25);
    background: rgba(255, 253, 248, 0.7);
    transition: border-color 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.form-group:focus-within {
    border-color: rgba(107, 101, 96, 0.5);
}

.form-input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
    font-size: 1rem;
    color: #2C2C2C;
    outline: none;
    min-width: 0;
}

.form-input::placeholder {
    color: #9E9890;
}

.form-button {
    padding: 14px 28px;
    border: none;
    background: #F7931A;
    color: #FFFDF8;
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.form-button:hover {
    background: #e5850f;
}

.message-success,
.message-error {
    display: none;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message-success {
    color: #5a8a52;
}

.message-error {
    color: #c0392b;
}

/* Ghost membership form states */
.signup-form.success .message-success { display: block; }
.signup-form.success .form-group { display: none; }
.signup-form.error .message-error { display: block; }
.signup-form.loading .form-button {
    opacity: 0.6;
    cursor: wait;
}

/* --------------------------------------------------------------------------
   Five Minutes Section
   -------------------------------------------------------------------------- */

.five-minutes .section-inner {
    padding-top: 60px;
    padding-bottom: 80px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.result-item {
    padding: 20px 28px;
    background: rgba(44, 44, 44, 0.03);
    border-radius: 16px;
}

.result-text {
    font-size: 1.1rem;
    color: #2C2C2C;
}

.section-disclaimer {
    font-size: 0.875rem;
    color: #6B6560;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Torn Paper Edge
   -------------------------------------------------------------------------- */

.torn-paper-edge {
    position: relative;
    width: 100%;
    line-height: 0;
    margin: -1px 0;
    overflow: hidden;
}

.torn-paper-edge svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --------------------------------------------------------------------------
   Three Gaps Section
   -------------------------------------------------------------------------- */

.three-gaps .section-inner {
    max-width: 700px;
    padding-top: 80px;
}

.gap-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
    text-align: left;
}

.gap-card {
    padding: 36px;
    background: rgba(44, 44, 44, 0.025);
    border-radius: 20px;
}

.gap-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.gap-tagline {
    font-size: 1.05rem;
    color: #6B6560;
    font-style: italic;
    margin-bottom: 16px;
}

.gap-body {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2C2C2C;
}

/* --------------------------------------------------------------------------
   Sovereignty Section
   -------------------------------------------------------------------------- */

.sovereignty .section-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sovereignty-body {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6B6560;
}

/* --------------------------------------------------------------------------
   Three Steps Section
   -------------------------------------------------------------------------- */

.three-steps .section-inner {
    max-width: 700px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(44, 44, 44, 0.025);
    border-radius: 20px;
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(247, 147, 26, 0.1);
    color: #F7931A;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2C2C2C;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 1rem;
    color: #6B6560;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Starter Kit Section
   -------------------------------------------------------------------------- */

.starter-kit .section-inner {
    max-width: 700px;
    padding-top: 100px;
}

.kit-intro {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #6B6560;
    margin-bottom: 48px;
}

.kit-contents {
    text-align: left;
    margin-bottom: 48px;
}

.kit-subhead {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 28px;
    text-align: center;
}

.kit-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
}

.kit-item {
    padding: 28px 32px;
    background: rgba(44, 44, 44, 0.025);
    border-radius: 20px;
}

.kit-item-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.kit-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6B6560;
}

.kit-bonus {
    font-size: 0.95rem;
    color: #6B6560;
    font-style: italic;
    text-align: center;
}

.kit-cta {
    text-align: center;
}

.kit-cta-link {
    display: inline-block;
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFDF8;
    background: #F7931A;
    padding: 16px 36px;
    border-radius: 100px;
    transition: background 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kit-cta-link:hover {
    background: #e5850f;
    color: #FFFDF8;
}

.kit-pricing {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    color: #6B6560;
    margin-top: 16px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Quiz — Page State Management
   -------------------------------------------------------------------------- */

.quiz {
    display: none;
}

.content-card.quiz-active .hero .section-inner {
    padding-bottom: 20px;
}

.content-card.quiz-active .signup-form,
.content-card.quiz-active .hero-privacy,
.content-card.quiz-active .hero-bonus,
.content-card.quiz-active .hero-subtitle {
    display: none;
}

.content-card.quiz-active .hero-headline {
    font-size: 2rem;
    margin-bottom: 8px;
}

.content-card.quiz-active .hero-quiz-intro {
    display: block;
}

.hero-quiz-intro {
    display: none;
    font-size: 1.05rem;
    color: #6B6560;
    line-height: 1.6;
}

.content-card.quiz-active .five-minutes,
.content-card.quiz-active .torn-paper-edge,
.content-card.quiz-active .three-gaps,
.content-card.quiz-active .sovereignty,
.content-card.quiz-active .three-steps,
.content-card.quiz-active .starter-kit,
.content-card.quiz-active .faq,
.content-card.quiz-active .site-footer {
    display: none;
}

.content-card.quiz-active .quiz {
    display: block;
}

.content-card.quiz-complete .starter-kit,
.content-card.quiz-complete .faq,
.content-card.quiz-complete .site-footer {
    display: block;
}

/* --------------------------------------------------------------------------
   Quiz — Layout
   -------------------------------------------------------------------------- */

.quiz .section-inner {
    max-width: 640px;
    padding-top: 0;
    padding-bottom: 80px;
    text-align: center;
}

.quiz-section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2C2C2C;
    margin-bottom: 12px;
}

.quiz-section-desc {
    font-size: 1.05rem;
    color: #6B6560;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   Quiz — Progress Bar
   -------------------------------------------------------------------------- */

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

.quiz-progress-bar {
    height: 4px;
    background: rgba(44, 44, 44, 0.08);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.quiz-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: #F7931A;
    border-radius: 100px;
    transition: width 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.quiz-progress-bar[data-progress="1"]::after { width: 25%; }
.quiz-progress-bar[data-progress="2"]::after { width: 50%; }
.quiz-progress-bar[data-progress="3"]::after { width: 75%; }
.quiz-progress-bar[data-progress="4"]::after { width: 100%; }

.quiz-progress-label {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.825rem;
    color: #6B6560;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Quiz — Custom Radio Buttons
   -------------------------------------------------------------------------- */

.quiz-fieldset {
    border: none;
    margin: 0 0 32px;
    padding: 0;
    text-align: left;
}

.quiz-legend {
    font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #2C2C2C;
    margin-bottom: 16px;
    display: block;
    width: 100%;
}

.quiz-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quiz-options--stacked {
    flex-direction: column;
}

.quiz-option {
    position: relative;
    cursor: pointer;
}

.quiz-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.quiz-option-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(255, 253, 248, 0.7);
    border: 1px solid rgba(107, 101, 96, 0.2);
    border-radius: 100px;
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2C2C2C;
    transition:
        background 400ms cubic-bezier(0.25, 0.1, 0.25, 1),
        border-color 400ms cubic-bezier(0.25, 0.1, 0.25, 1),
        color 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
    min-height: 44px;
    text-align: center;
    line-height: 1.3;
}

.quiz-option:hover .quiz-option-label {
    border-color: rgba(107, 101, 96, 0.4);
    background: rgba(255, 253, 248, 0.9);
}

.quiz-radio:checked + .quiz-option-label {
    background: #F7931A;
    border-color: #F7931A;
    color: #FFFDF8;
}

.quiz-radio:focus-visible + .quiz-option-label {
    outline: 2px solid #F7931A;
    outline-offset: 2px;
}

.quiz-options--stacked .quiz-option-label {
    border-radius: 16px;
    width: 100%;
    justify-content: flex-start;
    padding: 14px 24px;
}

/* --------------------------------------------------------------------------
   Quiz — Navigation Buttons
   -------------------------------------------------------------------------- */

.quiz-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(107, 101, 96, 0.08);
}

.quiz-nav-btn {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition:
        background 400ms cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
    min-height: 44px;
}

.quiz-nav-next,
.quiz-nav-submit {
    background: #F7931A;
    color: #FFFDF8;
}

.quiz-nav-next:hover:not(:disabled),
.quiz-nav-submit:hover:not(:disabled) {
    background: #e5850f;
}

.quiz-nav-next:disabled,
.quiz-nav-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quiz-nav-prev {
    background: rgba(44, 44, 44, 0.06);
    color: #2C2C2C;
}

.quiz-nav-prev:hover {
    background: rgba(44, 44, 44, 0.1);
}

/* --------------------------------------------------------------------------
   Quiz — Results
   -------------------------------------------------------------------------- */

.quiz-results {
    text-align: center;
    padding-top: 20px;
}

.quiz-results-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.2;
    color: #2C2C2C;
    margin-bottom: 32px;
}

.quiz-results-score {
    margin-bottom: 24px;
}

.quiz-results-number {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
}

.quiz-results-outof {
    display: block;
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    color: #6B6560;
    margin-top: 8px;
}

.quiz-results[data-severity="low"] .quiz-results-number { color: #5a8a52; }
.quiz-results[data-severity="medium"] .quiz-results-number { color: #D4A843; }
.quiz-results[data-severity="high"] .quiz-results-number { color: #F7931A; }
.quiz-results[data-severity="critical"] .quiz-results-number { color: #c0392b; }

.quiz-results-severity {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 32px;
}

.quiz-results[data-severity="low"] .quiz-results-severity {
    background: rgba(90, 138, 82, 0.1);
    color: #5a8a52;
}

.quiz-results[data-severity="medium"] .quiz-results-severity {
    background: rgba(212, 168, 67, 0.1);
    color: #b8942e;
}

.quiz-results[data-severity="high"] .quiz-results-severity {
    background: rgba(247, 147, 26, 0.1);
    color: #d47d0e;
}

.quiz-results[data-severity="critical"] .quiz-results-severity {
    background: rgba(192, 57, 43, 0.1);
    color: #c0392b;
}

.quiz-results-message {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #2C2C2C;
    max-width: 520px;
    margin: 0 auto 40px;
}

/* Gap breakdown */
.quiz-results-gaps {
    text-align: left;
    margin-bottom: 40px;
}

.quiz-results-gaps-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-results-gap-category {
    background: rgba(44, 44, 44, 0.03);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 16px;
}

.quiz-results-gap-cat-title {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6B6560;
    margin-bottom: 12px;
}

.quiz-results-gap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quiz-results-gap-list li {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #2C2C2C;
    padding: 6px 0 6px 20px;
    position: relative;
}

.quiz-results-gap-list li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 600;
}

.quiz-results-reality {
    background: rgba(44, 44, 44, 0.03);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.quiz-results-reality-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 12px;
}

.quiz-results-reality-message {
    font-size: 1rem;
    line-height: 1.65;
    color: #6B6560;
}

.quiz-results-next {
    font-size: 1rem;
    line-height: 1.6;
    color: #6B6560;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-results-btn {
    display: inline-block;
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFDF8;
    background: #F7931A;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.quiz-results-btn:hover {
    background: #e5850f;
}

.quiz-results-disclaimer {
    font-size: 0.825rem;
    color: #9E9890;
    margin-top: 32px;
    line-height: 1.55;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Quiz — Section Transitions
   -------------------------------------------------------------------------- */

.quiz-section:not([hidden]) {
    animation: quizFadeIn 500ms cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.quiz-results:not([hidden]) {
    animation: quizFadeIn 500ms cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

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

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */

.faq .section-inner {
    max-width: 640px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-list {
    text-align: left;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(107, 101, 96, 0.12);
}

.faq-item:first-child {
    border-top: 1px solid rgba(107, 101, 96, 0.12);
}

.faq-question {
    display: block;
    padding: 22px 40px 22px 0;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C2C2C;
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.4;
}

/* Hide default marker */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: '';
}

/* Custom chevron */
.faq-question::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #6B6560;
    border-bottom: 2px solid #6B6560;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-item[open] .faq-question::after {
    transform: translateY(-35%) rotate(-135deg);
}

.faq-answer {
    padding: 0 0 22px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.65;
    color: #6B6560;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    padding: 48px 56px;
    text-align: center;
    border-top: 1px solid rgba(107, 101, 96, 0.08);
}

.footer-inner {
    max-width: 480px;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.footer-legal,
.footer-privacy {
    font-size: 0.825rem;
    line-height: 1.55;
    color: #6B6560;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #9E9890;
    margin-top: 16px;
}

/* --------------------------------------------------------------------------
   Post / Page Templates
   -------------------------------------------------------------------------- */

.post .section-inner,
.page .section-inner {
    max-width: 680px;
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: left;
}

.post-title,
.page-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #2C2C2C;
    margin-bottom: 32px;
}

.post-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.post-content,
.page-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2C2C2C;
}

.post-content h2,
.page-content h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
}

.post-content h3,
.page-content h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
}

.post-content p,
.page-content p {
    margin-bottom: 20px;
}

.post-content a,
.page-content a {
    color: #F7931A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content blockquote,
.page-content blockquote {
    border-left: 3px solid rgba(247, 147, 26, 0.4);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #6B6560;
}

.post-content ul,
.post-content ol,
.page-content ul,
.page-content ol {
    margin: 16px 0 24px 24px;
}

.post-content li,
.page-content li {
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Ghost Koenig Editor — Content Width Classes
   -------------------------------------------------------------------------- */

.kg-width-wide {
    position: relative;
    width: 85vw;
    max-width: 1040px;
    min-width: 100%;
    margin-left: calc(50% - 42.5vw);
    margin-right: calc(50% - 42.5vw);
}

.kg-width-full {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.kg-width-wide img,
.kg-width-full img {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Error Page
   -------------------------------------------------------------------------- */

.error-page .section-inner {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}

.error-code {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 6rem;
    font-weight: 500;
    color: rgba(44, 44, 44, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.error-message {
    font-size: 1.25rem;
    color: #6B6560;
    margin-bottom: 40px;
}

.error-link {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #F0EDE6;
    background: #2C2C2C;
    padding: 12px 28px;
    border-radius: 100px;
    display: inline-block;
    transition: background 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.error-link:hover {
    background: #444;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */

.anim-fade {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.anim-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* No-JS fallback: show everything */
.no-js .anim-fade {
    opacity: 1;
    transform: none;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .anim-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .site-background {
        will-change: auto;
    }

    .quiz-section:not([hidden]),
    .quiz-results:not([hidden]) {
        animation: none;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (768px – 1199px)
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .content-card {
        width: 92%;
        margin: 48px auto;
    }

    .section {
        padding: 0 40px;
    }

    .site-header {
        padding: 24px 40px;
    }

    .site-footer {
        padding: 40px;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .section-headline {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile (<768px)
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    body {
        font-size: 1rem;
    }

    .content-card {
        width: calc(100% - 12px);
        margin: 24px auto;
        border-radius: 22px;
    }

    .section {
        padding: 0 24px;
    }

    .section-inner {
        padding: 56px 0;
    }

    .site-header {
        padding: 20px 24px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .header-cta {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero .section-inner {
        padding-top: 64px;
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.22;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-headline {
        font-size: 1.85rem;
    }

    .form-group {
        flex-direction: column;
        border-radius: 16px;
    }

    .form-input {
        padding: 14px 20px;
        text-align: center;
    }

    .form-button {
        padding: 14px 24px;
        border-radius: 0;
    }

    .gap-card {
        padding: 28px 24px;
    }

    .gap-title {
        font-size: 1.35rem;
    }

    .gap-body {
        font-size: 1rem;
    }

    .step {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .kit-item {
        padding: 24px;
    }

    .faq-question {
        font-size: 1.1rem;
        padding-right: 32px;
    }

    .post-title,
    .page-title {
        font-size: 2rem;
    }

    .site-footer {
        padding: 36px 24px;
    }

    .sovereignty .section-inner {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .sovereignty-body {
        font-size: 1.05rem;
    }

    .error-code {
        font-size: 4rem;
    }

    /* Quiz mobile */
    .content-card.quiz-active .hero-headline {
        font-size: 1.5rem;
    }

    .quiz-section-title {
        font-size: 1.6rem;
    }

    .quiz-legend {
        font-size: 1rem;
    }

    .quiz-options {
        flex-direction: column;
    }

    .quiz-option-label {
        border-radius: 16px;
        width: 100%;
        justify-content: flex-start;
    }

    .quiz-results-number {
        font-size: 3.5rem;
    }

    .quiz-results-title {
        font-size: 1.85rem;
    }

    .quiz-results-reality {
        padding: 24px;
    }

    .quiz-nav {
        flex-direction: column;
    }

    .quiz-nav-btn {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Small Mobile (<400px)
   -------------------------------------------------------------------------- */

@media (max-width: 399px) {
    .content-card {
        width: calc(100% - 8px);
        margin: 16px auto;
        border-radius: 18px;
    }

    .section {
        padding: 0 16px;
    }

    .site-header {
        padding: 16px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .section-headline {
        font-size: 1.6rem;
    }

    .site-footer {
        padding: 28px 16px;
    }

    /* Quiz small mobile */
    .quiz-section-title {
        font-size: 1.4rem;
    }

    .quiz-results-number {
        font-size: 3rem;
    }
}

/* --------------------------------------------------------------------------
   Ghost-specific Overrides
   -------------------------------------------------------------------------- */

/* Ghost portal button positioning */
.gh-portal-triggerbtn-container {
    display: none;
}

/* Ghost notification bar */
.gh-notification {
    font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
}
