/* ============================================
   FIGMA HOME THEME – Stocgle-Prashant design
   Hero gradients, glass cards, section backgrounds
   ============================================ */

/* When Figma hero is first in main, remove top padding so hero sits under nav */
.main-content-dark:has(.hero-figma-wrap) {
    padding-top: 0;
}

/* ---- Hero: full-width gradient + orbs ---- */
.hero-figma-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #E0F4F4 0%, #E3F2FD 25%, #F0F9D9 50%, #FEF9E7 75%, #FFE9E9 100%);
    min-height: 0;
}

.dark-theme .hero-figma-wrap {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

.hero-figma-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-figma-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.hero-figma-orb-1 { top: -5rem; left: -5rem; width: 24rem; height: 24rem; background: radial-gradient(circle, #A0E7E5 0%, #B8F3F1 50%, transparent 70%); }
.hero-figma-orb-2 { top: 2rem; left: 33%; width: 28rem; height: 28rem; background: radial-gradient(circle, #B3E5FC 0%, #D4F1F9 50%, transparent 70%); opacity: 0.35; }
.hero-figma-orb-3 { top: -2rem; right: 25%; width: 26rem; height: 26rem; background: radial-gradient(circle, #E8F5C8 0%, #F4FADC 50%, transparent 70%); opacity: 0.3; }
.hero-figma-orb-4 { top: 33%; right: 0; width: 24rem; height: 24rem; background: radial-gradient(circle, #FFF9C4 0%, #FFFDE7 50%, transparent 70%); opacity: 0.3; }
.hero-figma-orb-5 { bottom: 2rem; right: 25%; width: 22rem; height: 22rem; background: radial-gradient(circle, #FFE0B2 0%, #FFF3E0 50%, transparent 70%); opacity: 0.25; }
.hero-figma-orb-6 { bottom: -5rem; left: 33%; width: 24rem; height: 24rem; background: radial-gradient(circle, #FFCDD2 0%, #FFEBEE 50%, transparent 70%); opacity: 0.2; }

.dark-theme .hero-figma-orb { opacity: 0.12; }

.hero-figma-content {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
    .hero-figma-content {
        padding: 5rem 2rem 6rem;
    }
}

.hero-figma-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-figma-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-figma-headline {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 1rem;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

.dark-theme .hero-figma-headline { color: #fff; }

.hero-figma-headline .hero-gradient-text {
    background: linear-gradient(135deg, #06B6D4 0%, #BED62F 35%, #F7CA18 70%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-figma-subline {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 1.5rem;
    max-width: 32rem;
}

.dark-theme .hero-figma-subline { color: #94A3B8; }

.hero-figma-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-figma-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #0F172A;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
    transition: transform 0.15s, box-shadow 0.2s;
}

.hero-figma-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.dark-theme .hero-figma-btn-primary {
    background: #fff;
    color: #0F172A;
}

.hero-figma-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.hero-figma-btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-1px);
}

.dark-theme .hero-figma-btn-secondary {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.dark-theme .hero-figma-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}

/* Hero example card (TCS) - glass */
.hero-figma-card {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.dark-theme .hero-figma-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-figma-gate-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0 0 1rem 0;
}

.dark-theme .hero-figma-gate-text {
    color: #CBD5F5;
}

.hero-figma-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hero-figma-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.dark-theme .hero-figma-card-title { color: #fff; }

.hero-figma-card-badge {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0F172A;
    background: linear-gradient(135deg, #A0E7E5, #80DEEA);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(128, 222, 234, 0.25);
}

.hero-figma-score-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 0.5rem;
}

.dark-theme .hero-figma-score-label { color: #94A3B8; }

.hero-figma-score-value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #06B6D4 0%, #BED62F 50%, #F7CA18 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-figma-score-max { font-size: 1.5rem; font-weight: 600; color: #94A3B8; margin-left: 0.25rem; }

.hero-figma-pill {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4A5D23;
    background: linear-gradient(135deg, #E8F5C8, #DCE775);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(220, 231, 117, 0.2);
}

.hero-figma-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E2E8F0;
}

.dark-theme .hero-figma-card-footer { border-top-color: rgba(255,255,255,0.1); }

.hero-figma-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.hero-figma-card-row:last-child { margin-bottom: 0; }

.hero-figma-card-row span:first-child { color: #64748B; font-weight: 500; }
.dark-theme .hero-figma-card-row span:first-child { color: #94A3B8; }

.hero-figma-card-row span:last-child { color: #0891B2; font-weight: 600; }

/* Search wrap inside hero (when 2-col) */
.hero-figma-search-wrap {
    margin-top: 0.5rem;
}

.hero-figma-search-wrap .hero-search-wrap { max-width: 100%; }
.hero-figma-search-wrap .hero-enter-hint,
.hero-figma-search-wrap .hero-try-inline { margin-top: 0.75rem; }

/* ---- Why Stocgle ---- */
.section-why-figma {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #E1F5FE 0%, #F0F9D9 50%, #FFF9C4 100%);
    position: relative;
    overflow: hidden;
}

.dark-theme .section-why-figma {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.section-why-figma .figma-section-inner {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-why-figma .figma-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.dark-theme .section-why-figma .figma-section-title { color: #fff; }

.section-why-figma .figma-section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.dark-theme .section-why-figma .figma-section-subtitle { color: #94A3B8; }

.figma-why-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) { .figma-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .figma-why-grid { grid-template-columns: repeat(4, 1fr); } }

.figma-why-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.figma-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.dark-theme .figma-why-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.figma-why-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.figma-why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.dark-theme .figma-why-card h4 { color: #fff; }

.figma-why-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748B;
}

.dark-theme .figma-why-card p { color: #94A3B8; }

/* ---- Market Pulse (dark strip) ---- */
.section-pulse-figma {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.section-pulse-figma .figma-section-inner {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-pulse-figma .figma-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.section-pulse-figma .figma-section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #94A3B8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pulse-strip {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pulse-strip::-webkit-scrollbar { display: none; }

.pulse-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pulse-card:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.1);
}

.pulse-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pulse-card-score-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pulse-card-score-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.pulse-card-score-circle.strong { background: linear-gradient(135deg, #16A34A, #15803D); box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4); }
.pulse-card-score-circle.good   { background: linear-gradient(135deg, #F59E0B, #D97706); box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4); }
.pulse-card-score-circle.weak   { background: linear-gradient(135deg, #DC2626, #B91C1C); box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4); }

.pulse-card-status-label { font-size: 0.75rem; color: #94A3B8; margin-bottom: 0.25rem; }
.pulse-card-status-value { font-size: 1rem; font-weight: 600; color: #E2E8F0; }

.pulse-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #94A3B8;
}

/* ---- Ask AI ---- */
.section-ai-figma {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #FFF9E7 0%, #FFE9E9 50%, #F0F9D9 100%);
    position: relative;
    overflow: hidden;
}

.dark-theme .section-ai-figma {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

.section-ai-figma .figma-section-inner {
    max-width: 40rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-ai-figma .figma-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.dark-theme .section-ai-figma .figma-section-title { color: #fff; }

.section-ai-figma .figma-section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.dark-theme .section-ai-figma .figma-section-subtitle { color: #94A3B8; }

.figma-ai-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dark-theme .figma-ai-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.figma-ai-card-header {
    padding: 1.25rem 2rem;
    background: rgba(227, 242, 253, 0.5);
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dark-theme .figma-ai-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.figma-ai-card-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #A0E7E5, #80DEEA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-ai-card-title { font-size: 1rem; font-weight: 700; color: #0F172A; }
.figma-ai-card-meta { font-size: 0.75rem; color: #64748B; }
.dark-theme .figma-ai-card-title { color: #fff; }
.dark-theme .figma-ai-card-meta { color: #94A3B8; }

.figma-ai-card-body {
    padding: 2rem;
    min-height: 200px;
}

.figma-ai-cta-wrap {
    padding: 1.5rem 2rem;
    border-top: 1px solid #E2E8F0;
    background: rgba(248, 250, 252, 0.8);
}

.dark-theme .figma-ai-cta-wrap {
    border-top-color: rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.figma-ai-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #0F172A;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
    transition: transform 0.15s, box-shadow 0.2s;
}

.figma-ai-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.dark-theme .figma-ai-cta-btn {
    background: #fff;
    color: #0F172A;
}

/* ---- How It Works ---- */
.section-how-figma {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #F0F9D9 0%, #FFF9E7 50%, #FFE0B2 100%);
    position: relative;
    overflow: hidden;
}

.dark-theme .section-how-figma {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

.section-how-figma .figma-section-inner {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-how-figma .figma-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.dark-theme .section-how-figma .figma-section-title { color: #fff; }

.section-how-figma .figma-section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.dark-theme .section-how-figma .figma-section-subtitle { color: #94A3B8; }

.figma-how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .figma-how-grid { grid-template-columns: repeat(3, 1fr); }
}

.figma-how-step {
    text-align: center;
}

.figma-how-step-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-how-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.dark-theme .figma-how-step h4 { color: #fff; }

.figma-how-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748B;
}

.dark-theme .figma-how-step p { color: #94A3B8; }

/* ---- Trust ---- */
.section-trust-figma {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #E0F4F4 0%, #E1F5FE 100%);
    position: relative;
    overflow: hidden;
}

.dark-theme .section-trust-figma {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.section-trust-figma .figma-section-inner {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-trust-figma .figma-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 2.5rem;
}

.dark-theme .section-trust-figma .figma-section-title { color: #fff; }

.figma-trust-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) { .figma-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .figma-trust-grid { grid-template-columns: repeat(4, 1fr); } }

.figma-trust-card {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.figma-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.dark-theme .figma-trust-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.figma-trust-card .icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-trust-card .big-number {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 0.25rem;
}

.dark-theme .figma-trust-card .big-number { color: #fff; }

.figma-trust-card .label {
    font-size: 0.9375rem;
    color: #64748B;
}

.dark-theme .figma-trust-card .label { color: #94A3B8; }

.figma-trust-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.dark-theme .figma-trust-disclaimer { color: #94A3B8; }

/* ---- Footer Figma 4-column ---- */
.footer-figma {
    background: var(--stocgle-card);
    border-top: 1px solid var(--stocgle-border);
    padding: 3rem 1.5rem 2rem;
}

.footer-figma .footer-figma-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-figma-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-figma-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-figma h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--stocgle-foreground);
    margin-bottom: 1rem;
}

.footer-figma p,
.footer-figma a,
.footer-figma button {
    font-size: 0.875rem;
    color: var(--stocgle-muted-foreground);
    line-height: 1.6;
    display: block;
    margin-bottom: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
}

.footer-figma a:hover,
.footer-figma button:hover {
    color: var(--stocgle-foreground);
}

.footer-figma-divider {
    border-top: 1px solid var(--stocgle-border);
    padding-top: 1.5rem;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-figma-legal {
    font-size: 0.8125rem;
    color: var(--stocgle-muted-foreground);
    margin: 0;
}

.footer-figma-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile: hero single column, smaller type */
@media (max-width: 767px) {
    .hero-figma-headline { font-size: 1.75rem; }
    .hero-figma-content { padding: 3rem 1rem; }
    .hero-figma-card { padding: 1.25rem 1.5rem; }
    .hero-figma-score-value { font-size: 3rem; }
    .section-why-figma .figma-section-title,
    .section-pulse-figma .figma-section-title,
    .section-ai-figma .figma-section-title,
    .section-how-figma .figma-section-title,
    .section-trust-figma .figma-section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-figma-headline { font-size: 1.5rem; }
    .pulse-card { width: 260px; }
}
