/* Public homepage — / */

/* ── Hero ── */
.home-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.home-hero .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.home-hero .fdl-wrap {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}

.home-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.home-hero .hero-sub {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    opacity: 0.75;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.hero-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    margin-bottom: 36px;
}

.hero-date-chip .chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a3e87a;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(163, 232, 122, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #2d4d27;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-btn-primary:hover {
    background: #f0f8ec;
    color: #2d4d27;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all 0.2s;
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: heroScrollBounce 2.2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About section ── */
.home-about {
    background: #fff;
    padding: 80px 0;
}

.about-tag {
    display: inline-block;
    background: rgba(67, 112, 55, 0.1);
    color: #437037;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.about-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #1a2e16;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-body {
    color: #5a6e55;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(45, 77, 39, 0.18);
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    display: block;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(27, 46, 22, 0.55) 100%);
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-img-badge .badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6ab356;
    flex-shrink: 0;
}

.about-img-badge span {
    font-size: 0.78rem;
    font-weight: 800;
    color: #2d4d27;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #437037 0%, #2d4d27 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(67, 112, 55, 0.3);
}

.about-cta:hover {
    background: linear-gradient(135deg, #355a2c 0%, #243d1f 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 112, 55, 0.4);
}

/* ── Stats strip ── */
.home-stats {
    background: linear-gradient(135deg, #2d4d27 0%, #437037 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.home-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 60px
    );
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.stat-item .stat-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.stat-item .stat-suffix {
    font-size: 1.8rem;
    font-weight: 900;
    opacity: 0.7;
}

.stat-item .stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* ── Feature cards ── */
.home-features {
    background: #eef1ee;
    padding: 72px 0;
}

.feature-card {
    background: #fff;
    border: 1.5px solid #e5eae5;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(67, 112, 55, 0.12);
    border-color: #c8d9c5;
}

.feature-card .fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(67, 112, 55, 0.1);
    color: #437037;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-card h5 {
    font-weight: 800;
    font-size: 0.95rem;
    color: #1a2e16;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.83rem;
    color: #7a8f76;
    line-height: 1.7;
    margin: 0;
}

.section-eyebrow {
    text-align: center;
    margin-bottom: 40px;
}

.section-eyebrow .tag {
    display: inline-block;
    background: rgba(67, 112, 55, 0.1);
    color: #437037;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-eyebrow h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #1a2e16;
    margin: 0;
}

/* ── Dark mode ── */
html[data-theme="dark"] .home-hero {
    background:
        radial-gradient(ellipse 72% 58% at 50% 38%, rgba(106, 179, 86, 0.14) 0%, transparent 54%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(45, 77, 39, 0.22) 0%, transparent 48%),
        linear-gradient(168deg, #060906 0%, #0a0f0a 22%, #0f1410 48%, #141c14 72%, #1c2a1a 100%) !important;
}

html[data-theme="dark"] .home-hero .topo-svg {
    opacity: 0.7;
}

html[data-theme="dark"] .home-hero .topo-map-fill {
    fill: rgba(106, 179, 86, 0.055);
}

html[data-theme="dark"] .home-hero .topo-grid {
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(106, 179, 86, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106, 179, 86, 0.06) 1px, transparent 1px);
}

html[data-theme="dark"] .home-hero .topo-vignette {
    background:
        radial-gradient(ellipse 62% 58% at 50% 44%, transparent 0%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.35) 100%);
}

html[data-theme="dark"] .home-hero h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45), 0 0 48px rgba(106, 179, 86, 0.12);
}

html[data-theme="dark"] .home-hero .hero-sub {
    opacity: 0.82;
    color: rgba(232, 236, 232, 0.85);
}

html[data-theme="dark"] .home-hero .fdl-wrap {
    background: rgba(106, 179, 86, 0.08);
    border-color: rgba(106, 179, 86, 0.32);
    box-shadow:
        0 0 0 1px rgba(106, 179, 86, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(106, 179, 86, 0.08);
}

html[data-theme="dark"] .hero-date-chip {
    background: rgba(15, 20, 16, 0.55);
    border-color: rgba(106, 179, 86, 0.28);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] .hero-date-chip .chip-dot {
    background: #7dd956;
    box-shadow: 0 0 0 3px rgba(125, 217, 86, 0.25), 0 0 12px rgba(125, 217, 86, 0.35);
}

html[data-theme="dark"] .hero-btn-primary {
    background: linear-gradient(135deg, #6ab356 0%, #437037 100%);
    color: #0a0f0a;
    box-shadow: 0 4px 20px rgba(106, 179, 86, 0.28);
}

html[data-theme="dark"] .hero-btn-primary:hover {
    background: linear-gradient(135deg, #7bc465 0%, #4d8540 100%);
    color: #0a0f0a;
    box-shadow: 0 8px 28px rgba(106, 179, 86, 0.38);
}

html[data-theme="dark"] .hero-btn-ghost {
    border-color: rgba(106, 179, 86, 0.4);
    color: rgba(232, 236, 232, 0.9);
}

html[data-theme="dark"] .hero-btn-ghost:hover {
    background: rgba(106, 179, 86, 0.12);
    border-color: rgba(163, 217, 138, 0.55);
    color: #fff;
}

html[data-theme="dark"] .hero-scroll {
    color: rgba(163, 217, 138, 0.45);
}

html[data-theme="dark"] .home-about {
    background: var(--camp-bg);
}

html[data-theme="dark"] .about-heading,
html[data-theme="dark"] .section-eyebrow h2 {
    color: var(--camp-text);
}

html[data-theme="dark"] .about-body {
    color: var(--camp-text-muted);
}

html[data-theme="dark"] .about-body strong {
    color: var(--camp-text);
}

html[data-theme="dark"] .about-tag,
html[data-theme="dark"] .section-eyebrow .tag {
    background: rgba(106, 179, 86, 0.15);
    color: #a3d98a;
}

html[data-theme="dark"] .about-img-wrap {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .about-img-badge {
    background: var(--camp-surface);
    border: 1px solid var(--camp-border);
}

html[data-theme="dark"] .about-img-badge span {
    color: var(--camp-text);
}

html[data-theme="dark"] .home-features {
    background: var(--camp-bg-muted);
}

html[data-theme="dark"] .feature-card {
    background: var(--camp-surface);
    border-color: var(--camp-border);
}

html[data-theme="dark"] .feature-card:hover {
    border-color: rgba(106, 179, 86, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] .feature-card h5 {
    color: var(--camp-text);
}

html[data-theme="dark"] .feature-card p {
    color: var(--camp-text-muted);
}

html[data-theme="dark"] .feature-card .fc-icon {
    background: rgba(106, 179, 86, 0.15);
    color: #a3d98a;
}
