@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float-accent {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.12; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.18; }
}

@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.15; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.skeleton-row { display: flex; align-items: center; gap: 12px; padding: 8px 14px; }
.skeleton-bar { height: 12px; border-radius: 6px; background: rgba(148, 163, 184, 0.15); animation: skeleton-pulse 1.5s ease-in-out infinite; }
.skeleton-bar.w20 { width: 20%; }
.skeleton-bar.w30 { width: 30%; }
.skeleton-bar.w40 { width: 40%; }
.skeleton-bar.w50 { width: 50%; }
.skeleton-bar.w60 { width: 60%; }
.data-unavailable { text-align: center; padding: 30px; color: var(--text-muted); font-size: 13px; }

@media (prefers-reduced-motion: reduce) {
    .lp-hero h1, .lp-hero p, .hero-ticker-form, .popular-tickers, .hero-cta,
    .lp-hero-orb, .tool-card-pro, .hero-report-row { animation: none !important; }
    .pdf-mockup { transform: none !important; transition: none !important; }
}

/* ── Hero badge ── */
.hero-badge-wrap {
    margin-bottom: 22px;
    animation: fadeInUp 0.5s ease-out 0.05s both;
}
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.28);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.6);
    animation: pulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

/* ── Hero stats bar ── */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px auto 28px;
    max-width: 700px;
    background: rgba(13,24,41,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 22px 36px;
    animation: fadeInUp 0.6s ease-out 0.28s both;
    gap: 0;
}
.hsb-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}
.hsb-value {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hsb-label {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.hsb-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.07);
    margin: 0 4px;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .hero-stats-bar { padding: 16px 16px; }
    .hsb-value { font-size: 16px; }
    .hsb-label { font-size: 10px; }
    .hsb-divider { margin: 0 2px; height: 36px; }
}

/* ── Hero tool icon grid ── */
.hero-tool-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 36px;
    max-width: 880px;
    animation: fadeInUp 0.6s ease-out 0.32s both;
}
.htg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 16px 14px 14px;
    border-radius: 16px;
    min-width: 106px;
    max-width: 124px;
    background: rgba(13,24,41,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: all 0.22s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.htg-card:hover {
    transform: translateY(-4px);
    background: rgba(13,24,41,0.8);
    border-color: rgba(255,255,255,0.11);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.htg-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s;
    flex-shrink: 0;
}
/* colour variants */
.htg-green  { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.22);  color: #4ade80; }
.htg-blue   { background: rgba(59,130,246,0.12);  border: 1px solid rgba(59,130,246,0.22);  color: #60a5fa; }
.htg-amber  { background: rgba(245,158,11,0.12);  border: 1px solid rgba(245,158,11,0.22);  color: #fbbf24; }
.htg-teal   { background: rgba(20,184,166,0.12);  border: 1px solid rgba(20,184,166,0.22);  color: #2dd4bf; }
.htg-indigo { background: rgba(99,102,241,0.12);  border: 1px solid rgba(99,102,241,0.22);  color: #818cf8; }
.htg-rose   { background: rgba(244,63,94,0.12);   border: 1px solid rgba(244,63,94,0.22);   color: #fb7185; }
.htg-purple { background: rgba(168,85,247,0.12);  border: 1px solid rgba(168,85,247,0.22);  color: #c084fc; }
/* hover brightens the icon box */
.htg-card:hover .htg-green  { background: rgba(34,197,94,0.20);  border-color: rgba(34,197,94,0.40); }
.htg-card:hover .htg-blue   { background: rgba(59,130,246,0.20);  border-color: rgba(59,130,246,0.40); }
.htg-card:hover .htg-amber  { background: rgba(245,158,11,0.20);  border-color: rgba(245,158,11,0.40); }
.htg-card:hover .htg-teal   { background: rgba(20,184,166,0.20);  border-color: rgba(20,184,166,0.40); }
.htg-card:hover .htg-indigo { background: rgba(99,102,241,0.20);  border-color: rgba(99,102,241,0.40); }
.htg-card:hover .htg-rose   { background: rgba(244,63,94,0.20);   border-color: rgba(244,63,94,0.40); }
.htg-card:hover .htg-purple { background: rgba(168,85,247,0.20);  border-color: rgba(168,85,247,0.40); }
.htg-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    line-height: 1.35;
    transition: color 0.2s;
}
.htg-card:hover .htg-label { color: #cbd5e1; }
@media (max-width: 600px) {
    .hero-tool-grid { gap: 8px; }
    .htg-card { min-width: 86px; max-width: 100px; padding: 12px 10px 11px; }
    .htg-icon { width: 38px; height: 38px; border-radius: 10px; }
    .htg-icon svg { width: 18px; height: 18px; }
    .htg-label { font-size: 10.5px; }
}

/* ── Hero form card header ── */
.hfc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.hfc-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hfc-title-block { text-align: left; }
.hfc-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #22c55e;
    display: block;
    margin-bottom: 3px;
}
.hfc-title-block h2 {
    font-size: 19px !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    margin: 0 !important;
    letter-spacing: -0.02em;
}

/* ── Oversized primary hero CTA ── */
.btn-hero-primary {
    font-size: 16px !important;
    padding: 15px 36px !important;
    box-shadow: 0 4px 28px rgba(34,197,94,0.28) !important;
    letter-spacing: -0.01em !important;
}
.btn-hero-primary:hover {
    box-shadow: 0 8px 40px rgba(34,197,94,0.42) !important;
    transform: translateY(-2px) !important;
}

/* ── Section header (used for story + others) ── */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #22c55e;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin: 0;
}
.section-header p {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 10px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.lp-hero {
    text-align: center;
    padding: 100px 24px 72px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 820px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.10) 0%, rgba(34, 197, 94, 0.03) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(148,163,184,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.lp-hero > * { position: relative; z-index: 1; }

.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.lp-hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(34, 197, 94, 0.06);
    top: 10%;
    left: 10%;
    animation: float-accent 8s ease-in-out infinite;
}

.lp-hero-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(59, 130, 246, 0.05);
    top: 20%;
    right: 8%;
    animation: float-accent 10s ease-in-out infinite 2s;
}

.lp-hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(168, 85, 247, 0.04);
    bottom: 15%;
    left: 25%;
    animation: float-accent 12s ease-in-out infinite 4s;
}

.lp-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.lp-hero h1 .accent-text {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero > p {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto 36px;
    line-height: 1.65;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
    flex-wrap: wrap;
    margin: 0 auto 32px;
    max-width: 720px;
    animation: fadeInUp 0.6s ease-out 0.25s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(13, 24, 41, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s;
}

.trust-badge:hover {
    border-color: rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.04);
}

.trust-badge svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; }

@media (max-width: 600px) {
    .trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-width: 360px; }
    .trust-badge { justify-content: center; font-size: 11px; padding: 5px 10px; }
}

.hero-report-row {
    display: flex;
    gap: 32px;
    max-width: 1060px;
    margin: 0 auto 24px;
    align-items: stretch;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-form-card {
    background: rgba(13, 24, 41, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-xl);
    padding: 36px;
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.hero-form-card h2 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 700;
}

.hero-form-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hero-pdf-preview {
    flex: 0 0 380px;
    position: relative;
    perspective: 1200px;
}

.pdf-mockup {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px 20px;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 25px 80px rgba(34, 197, 94, 0.15), 0 8px 32px rgba(0,0,0,0.4);
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pdf-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.pdf-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #4ade80, #10b981);
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.pdf-header-left h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
    letter-spacing: -0.02em;
}

.pdf-header-left span {
    font-size: 10px;
    color: #64748b;
}

.pdf-header-right {
    text-align: right;
}

.pdf-header-right .pdf-tag {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pdf-header-right .pdf-date {
    display: block;
    font-size: 9px;
    color: #94a3b8;
    margin-top: 3px;
}

.pdf-score-block {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
    text-align: center;
}

.pdf-score-label {
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.pdf-score-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2px;
}

.pdf-score-text {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.04em;
}

.pdf-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
}

.pdf-metric {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-metric-label {
    font-size: 9px;
    color: #64748b;
    font-weight: 500;
}

.pdf-metric-value {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
}

.pdf-ratings {
    flex: 1;
}

.pdf-ratings-title {
    font-size: 10px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.pdf-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pdf-rating-row:last-child { border-bottom: none; }

.pdf-rating-name {
    font-size: 10px;
    color: #475569;
    font-weight: 500;
}

.pdf-rating-badge {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pdf-rating-badge.strong {
    background: #dcfce7;
    color: #16a34a;
}

.pdf-rating-badge.moderate {
    background: #fef9c3;
    color: #ca8a04;
}

.pdf-sample-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #94a3b8;
    font-size: 8px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .hero-report-row { flex-direction: column; gap: 20px; max-width: 560px; }
    .hero-pdf-preview { flex: none; }
    .pdf-mockup { transform: none; }
}

.hero-ticker-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hero-ticker-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-main);
    min-width: 180px;
    text-transform: uppercase;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.hero-ticker-form input::placeholder { text-transform: none; color: var(--text-dim); }
.hero-ticker-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1); }

.hero-ticker-form button { padding: 14px 28px; white-space: nowrap; }

.popular-tickers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.popular-tickers span { color: var(--text-dim); font-size: 13px; }

.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-cta-row .btn-explore-tools {
    background: var(--blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-row .btn-explore-tools:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.35);
}

.hero-cta-row .btn-track-institutions {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-row .btn-track-institutions:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.tools-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 64px;
}

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

.tool-card-pro {
    background: rgba(13, 24, 41, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.tool-card-pro:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.05);
    background: rgba(13, 24, 41, 0.8);
}

.tool-card-pro:hover::before { opacity: 1; }

.tool-card-pro.purple-accent:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 85, 247, 0.05);
}
.tool-card-pro.purple-accent::before {
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.tool-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}

.tool-icon-wrap.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tool-icon-wrap.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.tool-icon-wrap svg { width: 26px; height: 26px; stroke-width: 1.5; fill: none; }

.tool-card-pro h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.tool-card-pro p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.tool-card-link {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
}

.tool-card-link:hover { gap: 10px; }
.tool-card-link.purple { color: #a855f7; }

.why-free-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-free-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.why-free-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
}

.earnings-ticker {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.earnings-ticker-header { display: flex; align-items: center; gap: 12px; padding: 0 24px 8px; }
.earnings-ticker-header h3 { font-size: 14px; color: var(--accent); margin: 0; display: flex; align-items: center; gap: 8px; }

.live-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: pulse 1.5s infinite; }

.ticker-scroll-container { overflow: hidden; position: relative; }
.ticker-scroll { display: flex; gap: 32px; animation: scroll 60s linear infinite; width: max-content; }
.ticker-scroll:hover { animation-play-state: paused; }

.ticker-item {
    display: flex; align-items: center; gap: 16px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 16px; white-space: nowrap; min-width: 200px;
}

.ticker-symbol { font-weight: 700; color: var(--text-main); font-size: 15px; }
.ticker-date { color: var(--text-muted); font-size: 12px; }
.ticker-surprise { font-weight: 600; font-size: 13px; padding: 4px 8px; border-radius: 4px; }
.ticker-surprise.positive { color: #22c55e; background: rgba(34, 197, 94, 0.15); }
.ticker-surprise.negative { color: #ef4444; background: rgba(239, 68, 68, 0.15); }
.ticker-surprise.neutral { color: var(--text-muted); background: rgba(100, 116, 139, 0.15); }
.ticker-upcoming { color: #f59e0b; font-size: 12px; font-weight: 500; }

.news-section {
    padding: 72px 24px 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-section h2 { font-size: clamp(24px, 3vw, 32px); text-align: center; margin-bottom: 12px; font-weight: 700; letter-spacing: -0.02em; }
.news-section > p { text-align: center; color: var(--text-muted); margin-bottom: 36px; font-size: 16px; }

.news-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }

.news-live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 8px 18px; border-radius: 999px; font-size: 13px; color: var(--accent); font-weight: 500;
}

.news-live-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; margin-bottom: 32px; }

.news-card {
    background: rgba(13, 24, 41, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover { transform: translateY(-3px); border-color: rgba(34, 197, 94, 0.3); box-shadow: var(--shadow-lg); }
.news-card-content { padding: 22px; }
.news-card-source { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.news-source-name { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.news-time { font-size: 12px; color: var(--text-dim); }
.news-card h3 { font-size: 16px; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card h3 a { color: var(--text-main); text-decoration: none; transition: color 0.2s; }
.news-card h3 a:hover { color: var(--accent); }
.news-card-summary { font-size: 14px; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.news-view-all { text-align: center; margin-top: 24px; }

.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
}

.faq-section h2 { font-size: clamp(24px, 3vw, 30px); text-align: center; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.02em; }
.faq-section > p { text-align: center; color: var(--text-muted); margin-bottom: 36px; font-size: 16px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(148, 163, 184, 0.2); }
.faq-item.open { border-color: rgba(34, 197, 94, 0.25); }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: rgba(13, 24, 41, 0.4);
    border: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-question:hover { background: rgba(13, 24, 41, 0.6); }

.faq-question svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-dim);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.trending-chip {
    display: inline-block; padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all 0.2s;
    border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--text-main);
}
.trending-chip:hover { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: #22c55e; transform: translateY(-1px); }
.trending-chip-hot {
    background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.35);
    color: #f59e0b; font-weight: 700; animation: trending-glow 2s ease-in-out infinite alternate;
}
.trending-chip-hot:hover { background: rgba(245, 158, 11, 0.22); border-color: rgba(245, 158, 11, 0.5); color: #fbbf24; }
@keyframes trending-glow {
    from { box-shadow: 0 0 4px rgba(245, 158, 11, 0.1); }
    to { box-shadow: 0 0 12px rgba(245, 158, 11, 0.25); }
}

.lp-dashboard-section { max-width: 1200px; margin: 64px auto 0; padding: 0 24px; }
.lp-dash-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .lp-dash-grid { grid-template-columns: 1fr; } }
.lp-dash-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s;
}
.lp-dash-panel:hover { border-color: rgba(34,197,94,0.2); }
.lp-dash-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px 12px; border-bottom: 1px solid var(--border);
}
.lp-dash-panel-header h3 { font-size: 15px; font-weight: 700; margin: 0; color: var(--text-main); }
.lp-live-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700; color: #22c55e;
    letter-spacing: 0.06em;
}
.lp-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    animation: lp-pulse 1.5s ease-in-out infinite;
}
@keyframes lp-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.lp-scanner-tag {
    font-size: 10px; font-weight: 600; padding: 3px 10px;
    border-radius: 12px; letter-spacing: 0.04em;
}
.lp-scanner-tag.amber { color: #f59e0b; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); }
.lp-scanner-tag.blue { color: #3b82f6; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); }
.lp-dash-tabs {
    display: flex; gap: 0; border-bottom: 1px solid var(--border);
}
.lp-dash-tab {
    flex: 1; padding: 10px; border: none; background: none;
    color: var(--text-muted); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; position: relative;
}
.lp-dash-tab:hover { color: var(--text-main); background: rgba(255,255,255,0.02); }
.lp-dash-tab.active { color: #22c55e; }
.lp-dash-tab.active::after {
    content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
    height: 2px; background: #22c55e; border-radius: 2px;
}
.lp-dash-loading {
    text-align: center; padding: 32px 16px; color: var(--text-muted);
    font-size: 13px;
}
.lp-dash-table-wrap { overflow-x: auto; }
.lp-dash-table { width: 100%; border-collapse: collapse; min-width: 280px; }
.lp-dash-table th {
    text-align: left; padding: 8px 12px; font-size: 11px; font-weight: 600;
    color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em;
    border-bottom: 1px solid var(--border);
}
.lp-dash-table th:last-child, .lp-dash-table td:last-child { text-align: right; }
.lp-dash-table td {
    padding: 9px 12px; font-size: 13px; color: var(--text-muted);
    border-bottom: 1px solid rgba(148,163,184,0.06);
}
.lp-dash-table tr:hover td { background: rgba(255,255,255,0.02); }
.lp-dash-table .lp-ticker {
    font-weight: 700; color: var(--text-main); cursor: pointer;
}
.lp-dash-table .lp-ticker:hover { color: #22c55e; }
.lp-positive { color: #22c55e; font-weight: 600; }
.lp-negative { color: #ef4444; font-weight: 600; }
.lp-dash-cta {
    text-align: center; margin-top: 32px; padding: 24px 0;
}
.lp-dash-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: var(--radius-md);
    background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e; font-weight: 700; font-size: 15px;
    text-decoration: none; transition: all 0.25s;
}
.lp-dash-cta-btn:hover {
    background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.4);
    transform: translateY(-1px);
}

.lp-outlook { max-width: 1000px; margin: 48px auto 0; padding: 0 24px; }
.lp-outlook-inner { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: border-color 0.2s; }
.lp-outlook-inner:hover { border-color: rgba(34,197,94,0.25); }
.lp-outlook-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 24px 28px; border-bottom: 1px solid var(--border); }
.lp-outlook-top-left { display: flex; align-items: center; gap: 14px; }
.lp-outlook-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-outlook-top h2 { font-size: 18px; font-weight: 700; color: var(--text-main); margin: 0 0 2px; }
.lp-outlook-date-tag { font-size: 12px; font-weight: 600; color: var(--accent); }
.lp-outlook-cta { padding: 10px 24px; background: var(--accent-gradient); color: #022c22; border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; white-space: nowrap; }
.lp-outlook-cta:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25); }
.lp-outlook-body { padding: 20px 28px 24px; }
.lp-outlook-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lp-outlook-hi { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.lp-outlook-hi .hi-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.lp-outlook-hi .hi-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lp-outlook-hi.bullish .hi-label { color: #22c55e; }
.lp-outlook-hi.bearish .hi-label { color: #ef4444; }
.lp-outlook-hi.base .hi-label { color: #3b82f6; }
.lp-outlook-fallback { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ══════════ FOUNDER / ABOUT — REDESIGN ══════════ */
.founder-section {
    max-width: 1120px;
    margin: 96px auto 0;
    padding: 0 24px;
}

/* Section eyebrow + headline above the card */
.fdr-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.28);
    color: #4ade80;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.fdr-section-label span {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22c55e;
    animation: fdr-pulse 1.8s ease-in-out infinite;
}
@keyframes fdr-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(1.4)} }

.fdr-section-title {
    font-size: clamp(1.6rem,2.6vw,2.2rem);
    font-weight: 900;
    color: #f1f5f9;
    margin: 0 0 40px;
    letter-spacing: -.04em;
    line-height: 1.1;
}
.fdr-section-title em { font-style: normal; color: #22c55e; }

/* Main card wrapper */
.founder-card {
    background: linear-gradient(145deg,#07101e 0%,#0a1625 55%,#07101e 100%);
    border: 1px solid rgba(34,197,94,.18);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 1px rgba(34,197,94,.05), 0 32px 80px rgba(0,0,0,.55);
}
/* Top gradient accent bar */
.founder-card::before {
    content:'';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,#22c55e 40%,#10b981 60%,transparent);
}
/* Glow orbs */
.fdr-glow {
    position: absolute; pointer-events: none; border-radius: 50%;
}
.fdr-glow-1 {
    top: -80px; left: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle,rgba(34,197,94,.07) 0%,transparent 65%);
}
.fdr-glow-2 {
    bottom: -60px; right: -40px;
    width: 260px; height: 260px;
    background: radial-gradient(circle,rgba(59,130,246,.05) 0%,transparent 65%);
}

/* Two-column layout */
.fdr-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    position: relative;
    z-index: 1;
}

/* ── LEFT: Founder profile panel ── */
.fdr-left {
    padding: 48px 40px 48px 48px;
    border-right: 1px solid rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Avatar */
.fdr-avatar-ring {
    width: 100px; height: 100px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg,#22c55e,#16a34a,#0f766e);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(34,197,94,.1), 0 10px 28px rgba(34,197,94,.22);
    align-self: flex-start;
}
.fdr-avatar-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #0d1f3c;
    display: flex; align-items: center; justify-content: center;
}
.fdr-avatar-inner img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    border-radius: 50%;
}

/* Identity */
.fdr-identity {}
.fdr-name {
    font-size: 22px; font-weight: 900;
    color: #f1f5f9; letter-spacing: -.02em; line-height: 1.1;
    margin: 0 0 4px;
}
.fdr-role {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; color: #4ade80;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 100px;
    padding: 3px 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 6px;
}

/* Stats row */
.fdr-stats {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    overflow: hidden;
}
.fdr-stat {
    flex: 1;
    padding: 14px 12px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.06);
}
.fdr-stat:last-child { border-right: none; }
.fdr-stat-val {
    font-size: 18px; font-weight: 900;
    color: #22c55e; line-height: 1;
    letter-spacing: -.02em;
}
.fdr-stat-label {
    font-size: 10px; color: #475569;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 4px;
    line-height: 1.3;
}

/* Bio */
.fdr-bio {
    font-size: 14px; color: #64748b;
    line-height: 1.8; margin: 0;
}
.fdr-bio strong { color: #94a3b8; font-weight: 600; }

/* Utility links */
.fdr-links {
    display: flex; flex-wrap: wrap; gap: 7px;
}
.fdr-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600;
    color: #64748b;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 6px 12px;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}
.fdr-link:hover {
    color: #22c55e;
    border-color: rgba(34,197,94,.3);
    background: rgba(34,197,94,.06);
}
.fdr-link svg { flex-shrink: 0; }

/* Disclaimer */
.fdr-disclaimer {
    font-size: 11.5px; color: #374151; line-height: 1.65; margin: 0;
    border-top: 1px solid rgba(255,255,255,.04);
    padding-top: 18px;
}
.fdr-disclaimer a { color: #4ade80; text-decoration: none; }
.fdr-disclaimer a:hover { text-decoration: underline; }

/* ── RIGHT: Principles panel ── */
.fdr-right {
    padding: 48px 48px 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.fdr-right-heading {
    font-size: 11px; font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 4px;
}

/* Principle cards */
.fdr-principle {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, background .25s, transform .2s;
    cursor: default;
}
.fdr-principle::before {
    content:'';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
    background: var(--fdr-accent, #22c55e);
    opacity: .7;
}
.fdr-principle:hover {
    border-color: rgba(34,197,94,.2);
    background: rgba(34,197,94,.03);
    transform: translateX(3px);
}

.fdr-p-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--fdr-icon-bg, rgba(34,197,94,.12));
    border: 1px solid var(--fdr-icon-border, rgba(34,197,94,.2));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fdr-p-num {
    font-size: 10px; font-weight: 800;
    color: var(--fdr-num-color, #22c55e);
    letter-spacing: .08em;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.fdr-p-title {
    font-size: 15px; font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -.01em;
    line-height: 1.2;
    margin-bottom: 6px;
}
.fdr-p-desc {
    font-size: 13px; color: #64748b;
    line-height: 1.65; margin: 0;
}

@media (max-width: 900px) {
    .fdr-grid { grid-template-columns: 1fr; }
    .fdr-left { padding: 36px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
    .fdr-right { padding: 28px 28px 36px; }
}
@media (max-width: 600px) {
    .fdr-left { padding: 28px 20px; }
    .fdr-right { padding: 20px 20px 28px; }
    .fdr-stats { flex-wrap: wrap; }
    .fdr-stat { min-width: 80px; }
}

.cta-section-landing {
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 0 24px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #3b82f6, #a855f7);
}

.join-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 44px;
}

.join-stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    transition: all 0.2s;
}

.join-stat-card:hover { border-color: rgba(148, 163, 184, 0.2); transform: translateY(-2px); }
.join-stat-card svg { margin-bottom: 10px; }
.join-stat-value { font-size: 20px; font-weight: 800; color: var(--text-main); margin-bottom: 4px; }
.join-stat-label { font-size: 12px; color: var(--text-muted); }

.cta-form-wrap { max-width: 480px; margin: 0 auto; }
.cta-form-wrap h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.cta-form-wrap > p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }

.cta-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cta-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-main);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.cta-form input::placeholder { color: var(--text-dim); }
.cta-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1); }

@media (max-width: 768px) {
    .lp-hero { padding: 64px 16px 40px !important; }
    .lp-hero h1 { font-size: 28px !important; }
    .hero-report-row { flex-direction: column !important; gap: 16px !important; max-width: 100% !important; }
    .hero-form-card { margin: 0 4px !important; padding: 24px 16px !important; }
    .hero-form-card h2 { font-size: 16px !important; }
    .hero-pdf-preview { flex: none !important; }
    .pdf-mockup { transform: none !important; padding: 20px 16px 16px !important; }
    .hero-ticker-form { flex-direction: column !important; }
    .hero-ticker-form input { width: 100% !important; min-width: 0 !important; }
    .hero-ticker-form button { width: 100% !important; }
    .popular-tickers { gap: 6px !important; }
    .tools-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
    .join-stats-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .cta-form { flex-direction: column !important; }
    .cta-form input, .cta-form button { width: 100% !important; }
    .principles-grid { grid-template-columns: 1fr !important; }
    .founder-card { padding: 32px 20px !important; }
    .founder-header { flex-direction: column; text-align: center; }
    .cta-card { padding: 36px 20px !important; }
}

@media (max-width: 700px) {
    .lp-outlook-highlights { grid-template-columns: 1fr; }
    .lp-outlook-top { padding: 18px 20px; }
    .lp-outlook-body { padding: 16px 20px 20px; }
    .lp-outlook-top h2 { font-size: 16px; }
    #trending-columns { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .tools-grid { grid-template-columns: 1fr; }
}

.hiw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 640px) { .hiw-grid { grid-template-columns: 1fr; } }
.lp-skeleton-list { padding: 8px 0; }

.proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 32px;
    max-width: 720px;
}
.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    min-width: 110px;
    background: rgba(13,24,41,0.55);
    border: 1px solid rgba(148,163,184,0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}
.proof-item:hover {
    border-color: rgba(148,163,184,0.22);
    transform: translateY(-2px);
}
.proof-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proof-green { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.2); }
.proof-blue  { background: rgba(96,165,250,0.12); border: 1px solid rgba(96,165,250,0.2); }
.proof-amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.proof-purple{ background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.2); }
.proof-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: center;
}
@media (max-width: 600px) {
    .proof-strip { gap: 8px; }
    .proof-item { min-width: 90px; padding: 12px 12px; }
    .proof-icon-wrap { width: 38px; height: 38px; border-radius: 10px; }
    .proof-label { font-size: 11px; }
}
