/* ============================================================
   Paceriz Official Web — De-AI Refinement Layer
   只 override AI 感來源，不破壞原有架構與 i18n。
   載入順序：styles.css → lang-switcher.css → styles-refine.css
   ============================================================ */

/* ---- 1. 拿掉三顆 gradient orb 飄浮裝飾 ---- */
.gradient-orb { display: none !important; }
.hero-background { display: none !important; }

/* ---- 2. Hero：深色 + 跑者實景背景（業界標竿 Runna/Whoop pattern） ---- */
.hero {
    min-height: auto;
    padding: 110px 0 90px;
    background-color: #0B1220;       /* 深藍黑底 */
    background-image:
        linear-gradient(180deg,
            rgba(11, 18, 32, 0.88) 0%,
            rgba(11, 18, 32, 0.82) 60%,
            rgba(11, 18, 32, 0.92) 100%),
        url('images/pexels-daniel-reche-718241-3601094.webp');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    color: #ffffff;
}
@media (max-width: 768px) {
    .hero {
        background-image:
            linear-gradient(180deg,
                rgba(11, 18, 32, 0.92) 0%,
                rgba(11, 18, 32, 0.95) 70%,
                rgba(11, 18, 32, 0.98) 100%),
            url('images/pexels-daniel-reche-718241-3601094.webp');
        background-position: center;
    }
}

.hero::before { display: none; }

/* Nav 在深色 hero 上要可讀 — 但只在 hero 範圍 */
.hero ~ * { /* downstream sections keep original */ }

/* ---- 3. Hero title：白色 + 粗體（業界 600-800 字重） ---- */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
}

/* gradient-text → 在深底上更亮的藍，保留品牌辨識 */
.gradient-text {
    color: #60B8FF;        /* 在深底上稍亮的藍，更易讀 */
    font-weight: 700;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* ---- 4. App 截圖：拿掉黑色 phone 機殼公版，截圖直接呈現 ---- */
.phone-frame {
    transform: none !important;
    animation: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.phone-frame:hover { transform: none !important; }
.phone-screen {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
}
/* Hero 右側：多張截圖層疊（Runna 法） */
.hero-image {
    width: 100% !important;
    max-width: 460px !important;
    position: relative;
    margin: 0 auto;
    opacity: 1 !important;
}
.hero-stack {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: 520px;
    margin: 0 auto;
}
.hs-shot {
    position: absolute;
    border-radius: 26px;
    background: #ffffff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10),
        0 24px 48px -16px rgba(0, 0, 0, 0.6),
        0 10px 20px -8px rgba(0, 0, 0, 0.4);
}
.hs-front {
    width: 232px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 3;
    border-radius: 30px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 0 6px rgba(255, 255, 255, 0.04),
        0 32px 64px -20px rgba(0, 0, 0, 0.7),
        0 14px 28px -10px rgba(0, 0, 0, 0.5);
}
.hs-back { width: 178px; bottom: 56px; opacity: 0.92; }
.hs-back-left  { left: 2%;  z-index: 1; transform: rotate(-6deg); }
.hs-back-right { right: 2%; z-index: 2; transform: rotate(6deg); }

@media (max-width: 1024px) {
    .hero-stack { height: 440px; }
    .hs-front { width: 196px; }
    .hs-back { width: 150px; bottom: 44px; }
}
@media (max-width: 768px) {
    .hero-image { max-width: 360px !important; }
    .hero-stack { height: 420px; }
    .hs-front { width: 186px; }
    .hs-back { width: 142px; bottom: 40px; }
    .hs-back-left { left: 0; }
    .hs-back-right { right: 0; }
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 54px;
    }

    .hero-image {
        display: none;
    }
}
/* hide the now-unused fake preview card if it sneaks in */
.hero-product-preview { display: none !important; }

/* ---- 5. Hero stats：深色 hero 上的數據條 ---- */
.hero-stats { display: none !important; }

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
    margin-top: 28px;
}

.proof-item {
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.proof-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60B8FF;
}

.proof-item strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.38;
    color: #fff;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.plan-finder {
    padding: 80px 0 84px;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.plan-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--gray-50);
    color: var(--gray-800);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.04);
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 144, 255, 0.38);
    background: #fff;
    box-shadow: 0 18px 42px rgba(24, 144, 255, 0.12);
}

.plan-card--featured {
    border-color: rgba(24, 144, 255, 0.42);
    background: linear-gradient(180deg, rgba(24, 144, 255, 0.1), #fff);
}

.plan-distance {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.plan-card h3 {
    margin: 0 0 12px;
    color: var(--gray-900);
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.plan-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.93rem;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .hero-proof {
        grid-template-columns: 1fr;
    }

    .plan-grid {
        display: flex;
        overflow-x: auto;
        padding: 2px 2px 16px;
        scroll-snap-type: x mandatory;
    }

    .plan-card {
        flex: 0 0 min(78vw, 320px);
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .hero-proof {
        margin-top: 22px;
    }

    .proof-item {
        min-height: auto;
        padding: 14px 16px;
    }

    .plan-finder {
        padding: 56px 0 60px;
    }
}

/* ---- 6. Feature card：拿掉「藍色光暈 hover」，改 hairline 質感 ---- */
.feature-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    box-shadow: none;
    padding: 32px 28px;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(24, 144, 255, 0.08);
}
.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.005em;
}
.feature-description { font-size: 0.9375rem; line-height: 1.75; color: var(--gray-600); }
.feature-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 144, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; }

/* ---- 7. Section title 字重收一級 ---- */
.section-title {
    font-weight: 600 !important;
    letter-spacing: -0.015em;
}

/* ---- 8. Primary button 強化品牌藍辨識度（拿掉漸層） ---- */
.btn-primary {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 1px 2px rgba(24, 144, 255, 0.25);
    border: 1px solid var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.btn-primary:hover {
    background: var(--primary-blue-dark) !important;
    border-color: var(--primary-blue-dark);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
    transform: translateY(-1px);
}
.btn-primary svg path { stroke: #ffffff !important; }

/* secondary 也清乾淨：hairline border + 微 hover */
.btn-secondary {
    background: #ffffff !important;
    color: var(--gray-900) !important;
    border: 1px solid var(--gray-300) !important;
    font-weight: 500;
}
.btn-secondary:hover {
    border-color: var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    background: #ffffff !important;
}

/* ---- 9. Step (how-it-works) 收一下浮誇箭頭 ---- */
.step::after {
    font-size: 1.5rem;
    opacity: 0.18;
}

/* ---- 10. 共用：所有 card-like 區塊收一下圓角，從 1rem/1.5rem 變 8px ---- */
.testimonial-card,
.blog-card,
.pricing-card,
.fit-column,
.comparison-panel,
.trust-step {
    border-radius: 8px !important;
}

/* ---- 11. Blog card 卡片：拿掉雷雨般的陰影 ---- */
.blog-card {
    box-shadow: none !important;
    border: 1px solid var(--gray-200) !important;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}
.blog-card:hover {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 4px 16px rgba(24, 144, 255, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* ---- 12. Testimonial card 統一 hairline 風格 ---- */
.testimonial-card {
    box-shadow: none !important;
    border: 1px solid var(--gray-200) !important;
}

/* ---- 13. 全域：精修字距讓中英文混排不那麼 AI ---- */
body {
    font-feature-settings: 'palt' 1, 'kern' 1;
}
.section-title,
.hero-title,
.feature-title,
.blog-title {
    text-wrap: balance;
}

/* ============================================================
   14. (deprecated) 之前嘗試用假 HTML 取代 app 截圖 — 已撤回
   ============================================================ */
/* .hero-image .phone-mockup { display: none !important; }  ← 已撤回 */

.hero-product-preview {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Inter', 'Noto Sans TC', -apple-system, sans-serif;
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.08);
}
.hpp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}
.hpp-head .label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
}
.hpp-head .week {
    font-size: 13px;
    color: var(--gray-900);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.hpp-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.hpp-meta .cell {
    padding: 0 16px;
    border-right: 1px solid var(--gray-200);
}
.hpp-meta .cell:last-child { border-right: 0; }
.hpp-meta .k {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.hpp-meta .v {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.hpp-meta .v .unit { font-size: 12px; color: var(--gray-500); font-weight: 400; margin-left: 2px; }

.hpp-days { padding: 4px 0; }
.hpp-day {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}
.hpp-day:last-child { border-bottom: 0; }
.hpp-day .d {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.hpp-day .body { color: var(--gray-800); }
.hpp-day .body .type {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: 1px;
}
.hpp-day .body .type.easy   { background: #E6F4FF; color: #0066CC; }
.hpp-day .body .type.tempo  { background: #FFF1E6; color: #C2570D; }
.hpp-day .body .type.long   { background: #E8F5E9; color: #2E7D32; }
.hpp-day .body .type.intvl  { background: #FFEBEE; color: #B71C1C; }
.hpp-day .body .type.rest   { background: #F3F4F6; color: #6B7280; }
.hpp-day .body .desc {
    font-size: 13.5px;
    color: var(--gray-800);
    font-variant-numeric: tabular-nums;
}
.hpp-day .body .pace {
    font-size: 12px;
    color: var(--gray-500);
    font-variant-numeric: tabular-nums;
    margin-left: 4px;
}
.hpp-day .state {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    background: #ffffff;
}
.hpp-day .state.done {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    position: relative;
}
.hpp-day .state.done::after {
    content: '';
    position: absolute;
    inset: 3px 3px 4px 3px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
}
.hpp-day .state.today {
    background: var(--accent-blue-light);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.15);
}
.hpp-day.is-today { background: #F8FBFF; }

.hpp-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 12px;
    color: var(--gray-500);
}
.hpp-foot .right { color: var(--gray-900); font-weight: 600; }

/* hero image 容器擴大一點，preview 比 320px 寬一些 */
.hero-image {
    max-width: 460px !important;
}

@media (max-width: 768px) {
    .hero-product-preview { max-width: 100%; }
    .hpp-meta { grid-template-columns: repeat(3, 1fr); }
    .hpp-meta .cell { padding: 0 10px; }
    .hpp-meta .v { font-size: 14px; }
}

/* ============================================================
   15. 訓練閉環 4 步（取代直線 3 步 trust-steps）
   ============================================================ */
.training-decision .trust-steps { display: none !important; }

.loop-grid {
    display: grid;
    grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 32px;
    position: relative;
}
.loop-step {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 200ms ease, transform 200ms ease;
}
.loop-step:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}
.loop-step .loop-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.08em;
}
.loop-step .loop-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary-blue);
    background: rgba(24, 144, 255, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.loop-step h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.005em;
    margin: 4px 0 0;
}
.loop-step p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}
.loop-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 20px;
    user-select: none;
}
.loop-return {
    grid-column: 1 / -1;
    margin-top: 16px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.06em;
    padding: 12px 0;
    border-top: 1px dashed var(--gray-200);
}
.loop-return span::before {
    content: '↻ ';
    color: var(--primary-blue);
    font-size: 14px;
    margin-right: 6px;
}

@media (max-width: 900px) {
    .loop-grid { grid-template-columns: 1fr; gap: 12px; }
    .loop-arrow { display: none; }
}

/* ============================================================
   16. 三欄對照表（vs 固定模板 / ChatGPT / Paceriz）
   ============================================================ */
.compare-table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: #ffffff;
}
.compare-3col {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.compare-3col thead th {
    text-align: left;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.01em;
}
.compare-3col thead th.opt--us {
    background: var(--primary-blue);
    color: #ffffff;
    border-bottom-color: var(--primary-blue);
}
.compare-3col thead th.dim { width: 140px; background: #ffffff; }
.compare-3col tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: var(--gray-700);
    line-height: 1.65;
    vertical-align: top;
}
.compare-3col tbody tr:last-child td { border-bottom: 0; }
.compare-3col tbody td.dim {
    font-weight: 600;
    color: var(--gray-900);
    background: #fbfbfc;
    width: 140px;
    white-space: nowrap;
}
.compare-3col tbody td.x {
    color: var(--gray-400);
}
.compare-3col tbody td.x::before {
    content: '—  ';
    color: var(--gray-300);
}
.compare-3col tbody td strong {
    color: var(--gray-900);
    font-weight: 600;
}
.compare-3col tbody tr td:last-child {
    background: rgba(24, 144, 255, 0.04);
    border-left: 1px solid rgba(24, 144, 255, 0.12);
}

@media (max-width: 768px) {
    .compare-3col { font-size: 13px; min-width: 640px; }
    .compare-table-wrap { -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   17. 「為什麼純 AI 課表不可靠」三點 + 引擎揭示
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.why-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 200ms ease, transform 200ms ease;
}
.why-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}
.why-card .why-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--primary-blue);
    letter-spacing: 0.08em;
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.why-card p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin: 0;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* 引擎揭示——深色強調塊，做頁面記憶錨點 */
.engine-reveal {
    margin-top: 28px;
    background: #0B1220;
    border-radius: 12px;
    padding: 40px 44px;
    color: #fff;
}
.engine-headline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 16px;
}
.engine-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 760px;
}
.engine-desc strong {
    color: #60B8FF;
    font-weight: 600;
}
@media (max-width: 768px) {
    .engine-reveal { padding: 28px 24px; }
    .engine-headline { font-size: 1.25rem; }
}

/* 對照表收合 */
.compare-toggle {
    margin-top: 28px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}
.compare-toggle summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 180ms ease;
}
.compare-toggle summary::-webkit-details-marker { display: none; }
.compare-toggle summary::before {
    content: '+';
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    color: var(--primary-blue);
    line-height: 1;
}
.compare-toggle[open] summary::before { content: '−'; }
.compare-toggle summary:hover { color: var(--primary-blue); }
.compare-toggle .compare-table-wrap {
    margin-top: 0;
    border: 0;
    border-top: 1px solid var(--gray-200);
    border-radius: 0;
}

/* ============================================================
   18. 理念 band（Jakob / 看起來普通的日子）
   ============================================================ */
.manifesto {
    padding: 88px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.manifesto-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.manifesto-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 16px;
}
.manifesto-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-wrap: balance;
}
.manifesto-lead {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 32px;
}
.manifesto-quote {
    margin: 0 auto 32px;
    padding: 24px 28px;
    max-width: 600px;
    border-left: 3px solid var(--primary-blue);
    background: #ffffff;
    border-radius: 8px;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--gray-900);
}
.manifesto-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.8125rem;
    font-weight: 400;
    font-style: normal;
    color: var(--gray-500);
    letter-spacing: 0.01em;
}
.manifesto-close {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 24px;
}
.manifesto-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}
@media (max-width: 768px) {
    .manifesto { padding: 56px 0; }
    .manifesto-quote { font-size: 1.1rem; padding: 20px 22px; }
}
