/* ============================================================
   LLMRanky — Feature Pages (Parent + Child) Shared Styles
   Hero banner · Feature grid · Demo blocks · Benefit list
   Child features · CTA · Breadcrumb
   ============================================================ */

/* ── Feature Hero ──────────────────────────────────────────── */

.fp-hero {
    position: relative;
    padding: var(--space-16) 0 var(--space-12);
    overflow: hidden;
    text-align: center;
    background: var(--gradient-hero);
}

.fp-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -200px;
    right: -100px;
    opacity: 0.5;
    animation: mesh-float-1 18s ease-in-out infinite;
}

.fp-hero-blue::before { background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%); }
.fp-hero-purple::before { background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%); }
.fp-hero-green::before { background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%); }
.fp-hero-amber::before { background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%); }
.fp-hero-red::before { background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 70%); }

@keyframes mesh-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@media (min-width: 768px) {
    .fp-hero { padding: var(--space-20) 0 var(--space-16); }
}

.fp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-4);
    border: 1px solid;
}

.fp-badge-blue   { background: var(--color-primary-bg); color: var(--color-primary); border-color: var(--color-primary-light); }
.fp-badge-purple { background: var(--color-secondary-bg); color: var(--color-secondary); border-color: var(--color-secondary-light); }
.fp-badge-green  { background: var(--color-excellent-bg); color: var(--color-excellent); border-color: var(--color-excellent-border); }
.fp-badge-amber  { background: var(--color-accent-light); color: var(--color-accent); border-color: rgba(245,158,11,0.3); }
.fp-badge-red    { background: var(--color-critical-bg); color: var(--color-critical); border-color: rgba(239,68,68,0.3); }

.fp-hero h1 {
    margin-bottom: var(--space-4);
    line-height: 1.15;
}

.fp-hero-desc {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto var(--space-6);
}

@media (min-width: 768px) {
    .fp-hero-desc { font-size: var(--text-xl); }
}

.fp-hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* ── Breadcrumb ────────────────────────────────────────────── */

.fp-breadcrumb {
    padding: var(--space-3) 0;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.fp-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.fp-breadcrumb a:hover { color: var(--color-primary-hover); }
.fp-breadcrumb span { margin: 0 var(--space-1); }

/* ── Intro Paragraph (cocon link) ──────────────────────────── */

.fp-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-10) 0;
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    text-align: center;
}

.fp-intro a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fp-intro p + p { margin-top: var(--space-4); }

.section-content,
.fp-content-block,
.fp-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.section-content p,
.fp-content-block p,
.fp-content p { margin-bottom: var(--space-4); }
.section-content p:last-child,
.fp-content-block p:last-child,
.fp-content p:last-child { margin-bottom: 0; }

/* ── Benefits Row ──────────────────────────────────────────── */

.fp-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-12);
}

@media (min-width: 640px) { .fp-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fp-benefits { grid-template-columns: repeat(3, 1fr); } }

.fp-benefit {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.fp-benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.fp-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    transition: transform 0.3s ease;
}

.fp-benefit:hover .fp-benefit-icon { transform: scale(1.1) rotate(-3deg); }

.fp-benefit h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.fp-benefit p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── How It Works (feature page variant) ───────────────────── */

.fp-how {
    background: var(--color-surface);
}

.fp-how-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fp-how-step {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-border);
}

.fp-how-step:last-child { border-bottom: none; }

.fp-how-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.fp-how-step h3 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.fp-how-step p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ── Child Feature Cards (on parent pages) ─────────────────── */

.fp-children {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 640px) { .fp-children { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fp-children { grid-template-columns: repeat(3, 1fr); } }

.fp-child {
    display: flex;
    flex-direction: column;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.fp-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.fp-child:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fp-child:hover::after { transform: scaleX(1); }

.fp-child h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.fp-child p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    flex: 1;
}

.fp-child-link {
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    transition: gap 0.2s ease;
}

.fp-child:hover .fp-child-link { gap: var(--space-2); }

/* ── Feature CTA ───────────────────────────────────────────── */

.fp-cta {
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fp-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.fp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.fp-cta h2 { margin-bottom: var(--space-3); }

.fp-cta p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

/* ── Detail Sections (alternating) ─────────────────────────── */

.fp-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 900px;
    margin: 0 auto var(--space-12);
}

@media (min-width: 768px) {
    .fp-detail { grid-template-columns: 1fr 1fr; }
    .fp-detail.reverse > *:first-child { order: 2; }
    .fp-detail.reverse > *:last-child { order: 1; }
}

.fp-detail-text h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
    .fp-detail-text h2 { font-size: var(--text-2xl); }
}

.fp-detail-text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.fp-detail-visual {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.fp-detail-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.fp-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.fp-detail-list li::before {
    content: '✓';
    color: var(--color-excellent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Stat Bar (mini proof) ─────────────────────────────────── */

.fp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 640px) { .fp-stats { grid-template-columns: repeat(3, 1fr); } }

.fp-stat {
    text-align: center;
    padding: var(--space-4);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.fp-stat-val {
    font-size: var(--text-2xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.fp-stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ── Interactive Demo Blocks (sales page) ──────────────────── */

.fp-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fp-showcase { grid-template-columns: 1fr 1fr; }
    .fp-showcase.reverse { direction: rtl; }
    .fp-showcase.reverse > * { direction: ltr; }
}

.fp-showcase-text { max-width: 480px; }

.fp-showcase-text h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .fp-showcase-text h2 { font-size: var(--text-2xl); }
}

.fp-showcase-text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.fp-showcase-text p:last-child { margin-bottom: 0; }

.fp-showcase-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.fp-showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.fp-showcase-list li .sc-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 1px;
}

.sc-icon-check { background: var(--color-excellent-bg); color: var(--color-excellent); }
.sc-icon-warn  { background: var(--color-critical-bg); color: var(--color-critical); }
.sc-icon-blue  { background: var(--color-primary-bg); color: var(--color-primary); }

/* ── Mockup Window ─────────────────────────────────────────── */

.fp-mockup {
    background: var(--color-text);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.fp-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-3) var(--space-4);
    background: rgba(255,255,255,0.05);
}

.fp-mockup-dot {
    width: 8px; height: 8px; border-radius: 50%;
}
.fp-mockup-dot:nth-child(1) { background: #EF4444; }
.fp-mockup-dot:nth-child(2) { background: #F59E0B; }
.fp-mockup-dot:nth-child(3) { background: #10B981; }

.fp-mockup-content {
    padding: var(--space-5);
    color: #fff;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    min-height: 180px;
    position: relative;
}

/* ── Animated Score Ring ───────────────────────────────────── */

.fp-score-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fp-score-ring svg { width: 160px; height: 160px; }

.fp-score-ring .ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 10;
}

.fp-score-ring .ring-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    transition: stroke-dashoffset 2s cubic-bezier(0.4,0,0.2,1);
    transform: rotate(-90deg);
    transform-origin: center;
}

.fp-score-ring .ring-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #fff;
}

.fp-score-ring .ring-label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-2);
    font-weight: 500;
}

/* ── Comparison Cards (before/after, mode A/B) ─────────────── */

.fp-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 640px) { .fp-compare { grid-template-columns: 1fr 1fr; } }

.fp-compare-card {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.fp-compare-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    border-radius: 50%;
    opacity: 0.04;
    transform: translate(50%, -50%);
}

.fp-compare-bad {
    background: var(--color-critical-bg);
    border: 1px solid var(--color-critical-border);
}
.fp-compare-bad::after { background: var(--color-critical); }

.fp-compare-good {
    background: var(--color-excellent-bg);
    border: 1px solid var(--color-excellent-border);
}
.fp-compare-good::after { background: var(--color-excellent); }

.fp-compare-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-2);
}

.fp-compare-bad .fp-compare-label { color: var(--color-critical); }
.fp-compare-good .fp-compare-label { color: var(--color-excellent); }

.fp-compare-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.fp-compare-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── Animated Step Flow (visual timeline) ──────────────────── */

.fp-flow {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.fp-flow::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    opacity: 0.2;
}

@media (min-width: 768px) {
    .fp-flow::before { left: 50%; transform: translateX(-50%); }
}

.fp-flow-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    position: relative;
    padding-left: 60px;
}

@media (min-width: 768px) {
    .fp-flow-step {
        grid-template-columns: 1fr auto 1fr;
        gap: var(--space-6);
        padding-left: 0;
        text-align: right;
    }
    .fp-flow-step:nth-child(even) { direction: rtl; }
    .fp-flow-step:nth-child(even) > * { direction: ltr; }
    .fp-flow-step:nth-child(even) .fp-flow-text { text-align: left; }
}

.fp-flow-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    position: absolute;
    left: 0;
}

@media (min-width: 768px) {
    .fp-flow-num { position: static; }
}

.fp-flow-text h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.fp-flow-text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.fp-flow-visual {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Animated Bars (diagnosis demo) ────────────────────────── */

.fp-diag-bars {
    display: flex;
    align-items: flex-end;
    gap: var(--space-3);
    height: 100px;
    padding: var(--space-3);
}

.fp-diag-bar {
    flex: 1;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: height 1.2s cubic-bezier(0.34,1.56,0.64,1);
    height: 0;
    position: relative;
}

.fp-diag-bar.animated { height: var(--h); }

.fp-diag-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: var(--color-text-muted);
    white-space: nowrap;
    font-family: var(--font-sans);
}

/* ── Testimonial / Quote ───────────────────────────────────── */

.fp-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.fp-quote blockquote {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    position: relative;
}

.fp-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.fp-quote cite {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-style: normal;
    font-weight: 500;
}

/* ── Feature Highlight Strip ───────────────────────────────── */

.fp-strip {
    background: var(--color-text);
    color: #fff;
    padding: var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

.fp-strip::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    top: -150px; right: -100px;
    animation: mesh-float-1 18s ease-in-out infinite;
}

.fp-strip-inner {
    position: relative;
    z-index: 1;
}

.fp-strip h2 {
    color: #fff;
    text-align: center;
    margin-bottom: var(--space-3);
}

.fp-strip p {
    color: rgba(255,255,255,0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.fp-strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) { .fp-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fp-strip-grid { grid-template-columns: repeat(3, 1fr); } }

.fp-strip-item {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.fp-strip-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.fp-strip-item h3 {
    color: #fff;
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.fp-strip-item p {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* ── Animated Metrics Row ──────────────────────────────────── */

.fp-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

@media (min-width: 768px) { .fp-metrics { grid-template-columns: repeat(4, 1fr); } }

.fp-metric {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.fp-metric-val {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.fp-metric-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ── Mockup Code Lines (animated) ──────────────────────────── */

.fp-mockup-line {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    line-height: 1.7;
}

.fp-mockup-line .kw  { color: #7dd3fc; }
.fp-mockup-line .str { color: #86efac; }
.fp-mockup-line .cmt { color: rgba(255,255,255,0.35); font-style: italic; }
.fp-mockup-line .val { color: #fbbf24; }
.fp-mockup-line .tag { color: #c084fc; }
.fp-mockup-line .sep { color: rgba(255,255,255,0.2); }

.fp-mockup-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    margin-right: 6px;
    vertical-align: middle;
}

.fp-mockup-progress {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    margin: 6px 0;
    overflow: hidden;
}

.fp-mockup-progress-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.fp-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fp-mockup-card {
    padding: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.fp-mockup-card-label {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.fp-mockup-card-val {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-sans);
}

.fp-mockup-table {
    width: 100%;
    font-size: 10px;
    border-collapse: collapse;
}

.fp-mockup-table th {
    text-align: left;
    color: rgba(255,255,255,0.4);
    padding: 4px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-family: var(--font-sans);
}

.fp-mockup-table td {
    padding: 5px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-sans);
}

.fp-mockup-tag {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    font-family: var(--font-sans);
}

.fp-mockup-tag-green  { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.fp-mockup-tag-amber  { background: rgba(245,158,11,0.2); color: #fbbf24; }
.fp-mockup-tag-red    { background: rgba(239,68,68,0.2); color: #fca5a5; }
.fp-mockup-tag-blue   { background: rgba(59,130,246,0.2); color: #93c5fd; }

/* ── Reuse text-gradient ───────────────────────────────────── */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
