:root {
    --bg: #fafaf8;
    --bg-warm: #f3f5f8;
    --bg-card: #ffffff;
    --text: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #888;
    --accent: #1e3a5f;
    --accent-light: #2d5a8e;
    --accent-bg: rgba(30, 58, 95, 0.06);
    --border: #dde1e8;
    --border-light: #e8eaef;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --radius: 4px;
    --max-width: 1080px;
    --font-serif: 'Source Serif 4', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[dir="rtl"] { direction: rtl; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 60px;
    gap: 20px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}
.site-logo svg { color: var(--accent); }

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    font-family: var(--font-sans);
    font-size: 14px;
}
[dir="rtl"] .header-nav { margin-left: 0; margin-right: auto; }
.header-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.header-nav a:hover, .header-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.lang-selector { position: relative; flex-shrink: 0; }
.lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 13px;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}
.lang-current:hover { background: var(--border-light); }
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 180px;
    padding: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    max-height: 400px;
    overflow-y: auto;
}
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
.lang-dropdown.open { display: block; }
.lang-option {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    font-family: var(--font-sans);
    border-radius: 3px;
    transition: background 0.1s;
}
.lang-option:hover { background: var(--accent-bg); color: var(--text); }
.lang-option.active { color: var(--accent); font-weight: 600; }

/* HERO */
.hero {
    background: var(--bg-card);
    padding: 56px 24px 48px;
    text-align: center;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.hero p {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}
.hero-meta {
    margin-top: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BREADCRUMB */
.breadcrumb {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px 0;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; color: var(--border); }

/* CONTENT AREA */
.content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 24px 64px;
    width: 100%;
}

/* SECTION TITLE */
.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* CATEGORY SECTIONS */
.category-section {
    margin-bottom: 48px;
}
.category-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 8px;
}

/* BODY GRID (home page) */
.body-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.body-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.body-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.body-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-warm);
}
.body-card-body {
    padding: 20px 22px;
}
.body-card-type {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.type-tellurique { background: #e8eef5; color: #1e3a5f; }
.type-gazeuse { background: #fef3e0; color: #c97800; }
.type-glacee { background: #e0f2f8; color: #0d6986; }
.type-naine { background: #f0e8f5; color: #6b3fa0; }
.type-lune { background: #e8f5ea; color: #2e7d32; }

.body-card-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 4px;
}
.body-card-temps {
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    color: var(--text-muted, #888);
    margin-bottom: 4px;
}
.body-card-temps .temp-lo { color: #60a5fa; }
.body-card-temps .temp-hi { color: #f87171; }
.body-card-host {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.body-card-tagline {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}
.body-card-meta {
    margin-top: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   PLANET HERO — IMMERSIVE EXPERIENCE
   ============================================ */

/* Header transparency on hero pages */
body.has-planet-hero .site-header {
    position: fixed;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
    transition: background 0.4s, border-color 0.4s;
}
body.has-planet-hero .site-header .site-logo {
    color: rgba(255,255,255,0.92);
    transition: color 0.4s;
}
body.has-planet-hero .site-header .header-nav a {
    color: rgba(255,255,255,0.8);
    border-bottom-color: transparent;
    transition: color 0.4s, border-color 0.4s;
}
body.has-planet-hero .site-header .header-nav a:hover {
    color: #fff;
}
body.has-planet-hero .site-header .lang-current {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    transition: background 0.4s, border-color 0.4s, color 0.4s;
}

/* Header title label — appears on scroll */
.header-hero-title {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 0;
    opacity: 0;
    transition: opacity 0.4s, max-width 0.4s, margin 0.4s;
    margin-left: 0;
    pointer-events: none;
}
.header-hero-title.visible {
    opacity: 1;
    max-width: 300px;
    margin-left: 8px;
}

/* Header returns to solid after scrolling past hero */
body.has-planet-hero .site-header.header-solid {
    background: var(--bg-card);
    border-bottom-color: var(--border);
}
body.has-planet-hero .site-header.header-solid .site-logo {
    color: var(--text);
}
body.has-planet-hero .site-header.header-solid .header-hero-title {
    color: var(--text);
}
body.has-planet-hero .site-header.header-solid .header-nav a {
    color: var(--text-secondary);
}
body.has-planet-hero .site-header.header-solid .header-nav a:hover,
body.has-planet-hero .site-header.header-solid .header-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
body.has-planet-hero .site-header.header-solid .lang-current {
    background: var(--bg-warm);
    border-color: var(--border);
    color: var(--text-secondary);
}

/* Full-viewport hero */
.planet-hero {
    position: relative;
    width: 100%;
    background: #050510;
}
.planet-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.planet-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        transparent 20%,
        transparent 45%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 2;
}
.planet-hero-content {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 24px;
    will-change: transform;
}
.planet-hero-type {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}
.planet-hero-host {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}
.planet-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin: 0 0 16px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.planet-hero-temps, .body-temps {
    font-family: var(--font-mono, monospace);
    font-size: 13px;
    margin-bottom: 12px;
}
.planet-hero-temps {
    color: rgba(255,255,255,0.6);
}
.body-temps {
    color: var(--text-muted, #888);
    margin-top: -4px;
}
.planet-hero-temps .temp-lo, .body-temps .temp-lo { color: #93c5fd; }
.planet-hero-temps .temp-hi, .body-temps .temp-hi { color: #fca5a5; }
.planet-hero-temps .temp-av, .body-temps .temp-av { opacity: 0.7; font-size: 12px; }
.planet-hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2.2vw, 22px);
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}
.planet-hero-scroll {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    animation: heroScrollPulse 2.5s ease-in-out infinite;
    z-index: 3;
}
@keyframes heroScrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
}

/* Parent link on landscape hero */
.planet-hero-parent {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}
.planet-hero-parent:hover {
    color: rgba(255,255,255,0.85);
}

/* Breadcrumb after hero */
.breadcrumb-inline {
    padding-top: 24px;
}

/* Image detail description (when hero replaces inline image) */
.image-detail-description {
    font-family: var(--font-serif);
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 32px 0 0;
}

/* BODY DETAIL PAGE */
.body-header {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}
.body-header-immersive {
    gap: 0;
}
.body-planet-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--bg-warm);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}
.body-info {
    flex: 1;
    min-width: 0;
}
.body-type-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.body-tagline {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}
.body-intro {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 720px;
}
.body-confidence {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.confidence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.confidence-very_high { background: #22c55e; }
.confidence-high { background: #84cc16; }
.confidence-medium { background: #eab308; }
.confidence-low { background: #ef4444; }

/* LANDSCAPES SECTION */
.landscapes-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 24px;
    padding-bottom: 12px;
}

/* IMAGE GALLERY */
.gallery { margin-top: 8px; }
.gallery-item {
    margin-bottom: 48px;
    padding-bottom: 48px;
}
.gallery-item:last-child { margin-bottom: 0; padding-bottom: 0; }
.gallery-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: var(--bg-warm);
}
.gallery-caption {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
}
.gallery-img-link {
    display: block;
    cursor: pointer;
}
.gallery-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
}
.gallery-title a { color: var(--text); text-decoration: none; }
.gallery-title a:hover { color: var(--accent); }

/* IMAGE DETAIL PAGE */
.section-body-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 24px;
}
.image-detail { margin: 0 0 40px; }
.image-detail-link { display: block; cursor: zoom-in; }
.image-detail-link:hover .image-detail-img { box-shadow: var(--shadow-md); }
.image-detail-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: var(--bg-warm);
    transition: box-shadow 0.2s;
}
.image-detail-caption {
    margin-top: 20px;
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 800px;
}

/* TRANSLATIONS */
.image-translations {
    margin: 40px 0;
    padding-top: 32px;
}
.translations-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.translations-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
}
.translations-list li { text-align: start; }
.translations-list li a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: background 0.15s;
}
.translations-list li a:hover { background: var(--accent-bg); }
.translations-list li a strong { color: var(--text); font-weight: 600; }

/* NAVIGATION */
.nav-next {
    margin-top: 48px;
    padding: 28px;
    background: var(--accent-bg);
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.nav-next:hover { background: rgba(30, 58, 95, 0.1); }
.nav-next-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 4px;
}
.nav-next-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}
.nav-next svg { flex-shrink: 0; color: var(--accent); }

/* FOOTER */
.site-footer {
    margin-top: auto;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
}
.site-footer sup {
    font-size: 0.75em;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--border), #bcc0c8);
    border: 2px solid var(--bg);
    border-radius: 0;
}
::-webkit-scrollbar-button { display: none !important; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-inner { height: 52px; gap: 12px; }
    .header-nav { gap: 12px; }
    .header-nav a { font-size: 13px; }
    .hero { padding: 36px 20px 32px; }
    .content { padding: 24px 16px 48px; }
    .body-grid { grid-template-columns: 1fr; gap: 16px; }
    .body-header { gap: 20px; }
    .body-planet-img { max-width: 100%; }
    .body-intro { max-width: none; }
    .landscapes-title { font-size: 22px; }
    .nav-next { padding: 20px; }
    .nav-next-title { font-size: 17px; }
    .gallery-item { margin-bottom: 32px; padding-bottom: 32px; }
    .breadcrumb { padding: 12px 16px 0; }
    .planet-hero-overlay { padding: 0 20px 60px; }
    .header-hero-title.visible { max-width: 200px; }
}

@media (max-width: 480px) {
    .site-logo { font-size: 15px; }
    .header-nav { display: none; }
    .body-planet-img { max-width: 100%; }
    .landscapes-title { font-size: 20px; }
    .body-card-img { aspect-ratio: 16/9; }
    .planet-hero-overlay { padding: 0 16px 50px; }
    .header-hero-title.visible { max-width: 140px; font-size: 13px; }
}

/* Review section */
.review-section {
    margin: 48px 0 32px;
    padding-top: 32px;
}
.review-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text);
    margin: 0 0 8px;
}
.review-intro {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 24px;
}
.review-comment {
    margin-bottom: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-left: 3px solid #888;
    border-radius: 4px;
}
.review-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    flex-wrap: wrap;
}
.review-ai-name {
    font-weight: 700;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
}
.review-vote {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.3px;
}
.review-comment-text {
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}
.review-summary {
    margin: 24px 0 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border-left: 3px solid #a855f7;
    border-radius: 4px;
}
.review-summary .review-comment-text {
    color: var(--text);
}

@media (max-width: 640px) {
    .review-comment { padding: 12px 14px; }
    .review-comment-header { gap: 8px; }
    .review-vote { font-size: 10px; padding: 1px 6px; }
}

/* PRODUCTIVIA BRAND */
.productivia-brand { white-space: nowrap; }
.productivia-brand .pia-ia { font-size: 0.72em; position: relative; top: -0.35em; font-weight: 700; letter-spacing: 0.02em; }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 2px; }

/* ABOUT PAGE */
.about-page { max-width: 800px; margin: 0 auto; padding: 0 24px 60px; }
.about-hero { text-align: center; padding: 80px 0 40px; }
.about-hero h1 { font-family: var(--font-serif); font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: var(--text); line-height: 1.15; margin: 0 0 20px; }
.about-hero p { font-size: 17px; line-height: 1.7; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
.about-stats-bar { display: flex; justify-content: center; gap: 40px; padding: 32px 0; margin-bottom: 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.about-stat { text-align: center; }
.about-stat-value { display: block; font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--accent); }
.about-stat-label { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); }
.about-section { margin-bottom: 48px; }
.about-section h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--text); margin: 0 0 16px; }
.about-section p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin: 0 0 12px; }
.about-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
.about-step { display: flex; gap: 20px; align-items: flex-start; }
.about-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.about-step h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--text); margin: 0 0 6px; }
.about-step p { margin: 0; font-size: 14px; }
.about-committee { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 20px; }
.about-committee-card { padding: 20px; border-radius: 12px; border: 1px solid var(--border); border-top: 3px solid; background: var(--bg-card, #fff); }
.about-committee-name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.about-committee-by { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.about-committee-card p { font-size: 13px; line-height: 1.5; color: var(--text-secondary); margin: 0; }
.about-process-timeline { position: relative; padding-left: 40px; margin-top: 20px; }
.about-process-timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--border); }
[dir="rtl"] .about-process-timeline { padding-left: 0; padding-right: 40px; }
[dir="rtl"] .about-process-timeline::before { left: auto; right: 16px; }
.about-process-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; position: relative; }
.about-process-num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; position: relative; z-index: 1; margin-left: -28px; }
[dir="rtl"] .about-process-num { margin-left: 0; margin-right: -28px; }
.about-process-step strong { font-family: var(--font-serif); font-size: 15px; color: var(--text); }
.about-process-step p { font-size: 13px; color: var(--text-secondary); margin: 4px 0 0; }
.about-beyond-list { list-style: none; padding: 0; margin: 16px 0 0; }
.about-beyond-list li { padding: 14px 16px 14px 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.about-beyond-list li::before { content: ''; position: absolute; left: 8px; top: 22px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
[dir="rtl"] .about-beyond-list li { padding: 14px 28px 14px 16px; }
[dir="rtl"] .about-beyond-list li::before { left: auto; right: 8px; }
.about-cta { text-align: center; padding: 48px 0 0; }
.about-cta-btn { display: inline-block; padding: 14px 32px; background: var(--accent); color: #fff; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; }
.about-cta-btn:hover { background: var(--accent-light); color: #fff; transform: translateY(-1px); }
.about-credit { margin-top: 20px; font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); }
.about-credit a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 640px) {
    .about-hero { padding: 48px 0 24px; }
    .about-stats-bar { gap: 24px; }
    .about-stat-value { font-size: 22px; }
    .about-committee { grid-template-columns: 1fr 1fr; }
}
