/* ===================================================
   WEEBNATION — Landing Page Stylesheet
   =================================================== */

/* ===================================================
   DESIGN TOKENS (shared across platform)
   =================================================== */
:root {
    --bg: #0e0e12;
    --card-surface: #16161e;
    --accent: #ff315a;
    --accent-hover: #e6264d;
    --accent-glow: rgba(255, 49, 90, 0.4);
    --accent-glow-soft: rgba(255, 49, 90, 0.15);
    --text-primary: #f0eee8;
    --text-muted: rgba(240, 238, 232, 0.45);
    --border: rgba(255, 255, 255, 0.06);
    --border-focus: rgba(255, 49, 90, 0.4);
    --font-display: 'Bebas Neue', cursive;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-input: 12px;
    --radius-pill: 100px;
    --radius-card: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-focus: 0 0 0 3px rgba(255, 49, 90, 0.15), 0 0 16px rgba(255, 49, 90, 0.1);
    --transition: 0.2s ease;
}

.light-theme {
    --bg: #eef0f5;
    --card-surface: #fafbfe;
    --text-primary: #1a1b2e;
    --text-muted: rgba(26, 27, 46, 0.5);
    --border: rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* ===================================================
   RESET & BASE
   =================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background-color var(--transition), color var(--transition);
    position: relative;
    overflow-x: hidden;
}

/* --- Grain / Noise Overlay --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* --- Particle Canvas --- */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===================================================
   NAVIGATION BAR
   =================================================== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background-color: transparent;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid transparent;
}

.landing-nav.scrolled {
    background-color: rgba(14, 14, 18, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.light-theme .landing-nav.scrolled {
    background-color: rgba(238, 240, 245, 0.9);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1;
    text-decoration: none;
    user-select: none;
    display: flex;
    align-items: center;
}

.nav-brand .brand-weeb {
    color: var(--accent);
}

.nav-brand .brand-nation {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

.nav-btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.nav-btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.nav-btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* ===================================================
   SCROLL-REVEAL ANIMATIONS
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   SECTION WRAPPER
   =================================================== */
.landing-section {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 2.6rem;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtext {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 600px;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 740px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-glow-soft);
    border: 1px solid rgba(255, 49, 90, 0.2);
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 49, 90, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(255, 49, 90, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===================================================
   FEATURES — "WHAT IS WEEBNATION?"
   =================================================== */
.features-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header .section-subtext {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 49, 90, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 49, 90, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-glow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 49, 90, 0.25);
    transform: scale(1.08);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* New-feature icon color variants */
.feature-icon--teal {
    background: rgba(20, 184, 166, 0.12);
}
.feature-icon--teal svg {
    color: #14b8a6;
}
.feature-card:hover .feature-icon--teal {
    background: rgba(20, 184, 166, 0.22);
}

.feature-icon--purple {
    background: rgba(139, 92, 246, 0.12);
}
.feature-icon--purple svg {
    color: #8b5cf6;
}
.feature-card:hover .feature-icon--purple {
    background: rgba(139, 92, 246, 0.22);
}

/* "New" badge that appears above the feature title */
.feature-new-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
    width: fit-content;
}

.feature-new-badge--purple {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

/* Extra stagger delay for the 5th and 6th cards */
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-header .section-subtext {
    margin: 0 auto;
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.how-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff7e5f);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 24px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 49, 90, 0.15));
    z-index: 1;
}

.how-step:last-child .step-connector {
    display: none;
}

.step-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===================================================
   PREVIEW / MOCKUP SECTIONS
   =================================================== */
.preview-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.preview-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.preview-block:last-child {
    margin-bottom: 0;
}

.preview-block.reverse {
    direction: rtl;
}

.preview-block.reverse > * {
    direction: ltr;
}

.preview-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-text .section-heading {
    font-size: 2.2rem;
}

.preview-image-wrap {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.preview-image-wrap:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 49, 90, 0.15);
}

.preview-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-card);
}

/* Glow border effect */
.preview-image-wrap::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-card) + 1px);
    background: linear-gradient(135deg, rgba(255, 49, 90, 0.2), transparent 50%, rgba(255, 49, 90, 0.1));
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.preview-image-wrap:hover::after {
    opacity: 1;
}

/* Preview tag/pill */
.preview-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-glow-soft);
    border-radius: var(--radius-pill);
    width: fit-content;
}

/* ===================================================
   CLARIFICATION SECTION
   =================================================== */
.clarify-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.clarify-card {
    background: linear-gradient(135deg, rgba(255, 49, 90, 0.06) 0%, var(--card-surface) 60%);
    border: 1px solid rgba(255, 49, 90, 0.12);
    border-radius: var(--radius-card);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.clarify-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 49, 90, 0.08), transparent 70%);
    pointer-events: none;
}

.clarify-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-glow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarify-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.clarify-content {
    flex: 1;
}

.clarify-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.clarify-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.clarify-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===================================================
   COMMUNITY / EARLY STAGE
   =================================================== */
.community-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.community-card {
    text-align: center;
    background: var(--card-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.community-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.community-emoji {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.community-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.community-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
    padding-top: 80px;
    padding-bottom: 120px;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: 3.2rem;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 16px;
}

.cta-heading .accent {
    color: var(--accent);
}

.cta-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    outline: none;
    text-decoration: none;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff7e5f);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.cta-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.cta-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ===================================================
   FOOTER
   =================================================== */
.landing-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.landing-footer a {
    color: var(--accent);
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

/* ===================================================
   RESPONSIVE — LARGE DESKTOP (≥1440px)
   =================================================== */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 5.5rem;
    }

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

    .section-heading {
        font-size: 3rem;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 40px 28px;
    }

    .cta-heading {
        font-size: 3.8rem;
    }
}

/* ===================================================
   RESPONSIVE — TABLET (≤1024px)
   =================================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .how-steps {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .how-step {
        max-width: 200px;
        flex: 0 0 auto;
    }

    .step-connector {
        display: none;
    }

    .preview-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .preview-block.reverse {
        direction: ltr;
    }

    .preview-text {
        text-align: center;
        align-items: center;
    }

    .preview-text .section-subtext {
        margin: 0 auto;
    }

    .clarify-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 24px;
    }
}

/* ===================================================
   RESPONSIVE — TABLET PORTRAIT (≤768px)
   =================================================== */
@media (max-width: 768px) {
    .landing-nav {
        padding: 14px 20px;
    }

    .nav-brand {
        font-size: 1.5rem;
    }

    .nav-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        padding: 140px 20px 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .landing-section {
        padding: 0 20px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .features-section,
    .how-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .preview-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .preview-block {
        margin-bottom: 56px;
    }

    .preview-text .section-heading {
        font-size: 1.8rem;
    }

    .clarify-title {
        font-size: 1.5rem;
    }

    .cta-heading {
        font-size: 2.4rem;
    }

    .community-card {
        padding: 36px 24px;
    }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤480px)
   =================================================== */
@media (max-width: 480px) {
    .landing-nav {
        padding: 12px 16px;
    }

    .nav-brand {
        font-size: 1.3rem;
    }

    .nav-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .hero {
        padding: 120px 16px 48px;
    }

    .hero-badge {
        font-size: 0.62rem;
        padding: 5px 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-scroll-hint {
        margin-top: 32px;
        font-size: 0.65rem;
    }

    .landing-section {
        padding: 0 16px;
    }

    .section-label {
        font-size: 0.62rem;
    }

    .section-heading {
        font-size: 1.7rem;
    }

    .section-subtext {
        font-size: 0.88rem;
    }

    .features-section,
    .how-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: flex-start;
    }

    .feature-icon {
        margin: 0;
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-content {
        flex: 1;
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .how-step {
        max-width: 280px;
    }

    .preview-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .preview-block {
        gap: 24px;
        margin-bottom: 48px;
    }

    .preview-text .section-heading {
        font-size: 1.5rem;
    }

    .preview-image-wrap {
        border-radius: 14px;
    }

    .clarify-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .clarify-card {
        padding: 28px 20px;
        gap: 20px;
    }

    .clarify-icon {
        width: 52px;
        height: 52px;
    }

    .clarify-icon svg {
        width: 24px;
        height: 24px;
    }

    .clarify-title {
        font-size: 1.3rem;
    }

    .clarify-desc {
        font-size: 0.85rem;
    }

    .community-section {
        padding-top: 36px;
        padding-bottom: 56px;
    }

    .community-card {
        padding: 28px 20px;
    }

    .community-title {
        font-size: 1.4rem;
    }

    .community-desc {
        font-size: 0.85rem;
    }

    .cta-section {
        padding-top: 56px;
        padding-bottom: 80px;
    }

    .cta-heading {
        font-size: 1.9rem;
    }

    .cta-subtext {
        font-size: 0.88rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
    }

    .landing-footer {
        padding: 20px 16px;
        font-size: 0.72rem;
    }
}

/* ===================================================
   SMALL MOBILE (≤360px)
   =================================================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .nav-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .cta-heading {
        font-size: 1.6rem;
    }
}
