/* === Landing Pages — High-Conversion Styles === */

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(22,163,74,0); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(22,163,74,0.35), 0 0 0 0 rgba(22,163,74,0.3); }
    50% { box-shadow: 0 8px 40px rgba(22,163,74,0.5), 0 0 0 8px rgba(22,163,74,0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(22,163,74,0.3); }
    50% { border-color: rgba(22,163,74,0.7); }
}
@keyframes popIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.8); }
    60% { transform: translateY(-4px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes notifSlide {
    0% { opacity: 0; transform: translateX(60px); }
    10% { opacity: 1; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(60px); }
}
@keyframes typingCursor {
    0%, 100% { border-color: #16a34a; }
    50% { border-color: transparent; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
@keyframes ribbonWave {
    0% { transform: rotate(-4deg); }
    50% { transform: rotate(-2deg); }
    100% { transform: rotate(-4deg); }
}

/* === Landing Topbar === */
.landing-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    animation: slideDown 0.5s ease-out;
}
.landing-topbar .container {
    display: flex; align-items: center; justify-content: space-between;
}
.landing-topbar .nav-logo span { font-size: 1rem; }

/* === Urgency Banner === */
.urgency-banner {
    background: linear-gradient(90deg, #fef3c7, #fefce8, #fef3c7);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    padding: 0.65rem 1rem; text-align: center;
    font-size: 0.82rem; font-weight: 600; color: #92400e;
    border-bottom: 1px solid #fde68a;
    position: relative; z-index: 1001;
}
.urgency-banner i { margin-right: 0.3rem; }
.urgency-banner .countdown {
    display: inline-flex; gap: 0.35rem; margin-left: 0.5rem;
    font-weight: 800; color: #b45309;
}
.urgency-banner .countdown span {
    background: rgba(180,83,9,0.1); padding: 0.1rem 0.35rem;
    border-radius: 4px; font-variant-numeric: tabular-nums;
}

/* === Landing Hero === */
.landing-hero {
    position: relative; padding: 7rem 0 4rem; overflow: hidden; min-height: 100vh;
    display: flex; align-items: center;
}
.landing-hero .hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.landing-hero .hero-bg::before {
    content: ''; position: absolute;
    top: -30%; right: -15%; width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.landing-hero .hero-bg::after {
    content: ''; position: absolute;
    bottom: -20%; left: -10%; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite 2s;
}
.landing-hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.landing-hero-text {
    max-width: 560px;
    animation: slideUp 0.8s ease-out;
}
.landing-hero-text .hero-badge {
    margin-bottom: 1.25rem;
    animation: popIn 0.6s ease-out 0.2s both;
}
.landing-hero-text h1 {
    font-size: 3.25rem; font-weight: 900; line-height: 1.08;
    letter-spacing: -0.035em; color: #14532d; margin-bottom: 1.25rem;
    animation: slideUp 0.8s ease-out 0.1s both;
}
.landing-hero-text h1 .gradient-text {
    background: linear-gradient(135deg, #16a34a, #059669, #0d9488, #16a34a);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}
.landing-hero-text .hero-sub, .landing-hero-text > p {
    font-size: 1.08rem; color: #4b5563; line-height: 1.75; margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s both;
}
.landing-hero-text .hero-cta {
    animation: slideUp 0.8s ease-out 0.3s both;
}
.landing-hero-text .hero-trust {
    animation: slideUp 0.8s ease-out 0.4s both;
}

/* === Glowing Primary CTA === */
.btn-hero-primary {
    position: relative;
    animation: pulseGlow 2.5s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 40px rgba(22,163,74,0.5) !important;
}
.btn-hero-primary::after {
    content: ''; position: absolute; inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #059669, #0d9488, #16a34a);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    z-index: -1; opacity: 0.4;
    filter: blur(8px);
}

/* === Landing CTA Box (Glassmorphism) === */
.landing-cta-box {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
    animation: scaleIn 0.8s ease-out 0.3s both;
    position: relative; overflow: hidden;
}
.landing-cta-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #16a34a, #059669, #0d9488);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}
.landing-cta-box h3 {
    font-size: 1.2rem; font-weight: 800; color: #14532d; margin-bottom: 0.5rem;
}
.landing-cta-box p {
    font-size: 0.88rem; color: #6b7280; margin-bottom: 1.5rem; line-height: 1.5;
}
.landing-cta-box .btn-hero-primary {
    width: 100%; justify-content: center; font-size: 1.02rem; padding: 0.95rem;
}
.landing-cta-box .trust-items {
    display: flex; flex-direction: column; gap: 0.55rem; margin-top: 1.25rem;
}
.landing-cta-box .trust-items span {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; color: #4b5563;
}
.landing-cta-box .trust-items i { color: #16a34a; font-size: 0.72rem; }

/* === Floating Notification Popups === */
.floating-notifs {
    position: absolute; right: -10px; top: 50%; z-index: 2;
    display: flex; flex-direction: column; gap: 0.75rem;
    pointer-events: none;
}
.float-notif {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 0.65rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; font-weight: 600; color: #374151;
    white-space: nowrap;
    opacity: 0;
}
.float-notif:nth-child(1) { animation: notifSlide 5s ease-in-out 2s infinite; }
.float-notif:nth-child(2) { animation: notifSlide 5s ease-in-out 4.5s infinite; }
.float-notif:nth-child(3) { animation: notifSlide 5s ease-in-out 7s infinite; }
.float-notif .notif-icon {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; flex-shrink: 0;
}

/* === Social Proof Bar (Enhanced) === */
.landing-proof {
    padding: 3rem 0; background: #fafbfc;
    border-top: 1px solid #f0f1f3; border-bottom: 1px solid #f0f1f3;
    position: relative;
}
.landing-proof-stats {
    display: flex; justify-content: center; gap: 3.5rem; text-align: center;
}
.landing-proof-stats .stat {
    position: relative;
}
.landing-proof-stats .stat strong {
    display: block; font-size: 2rem; font-weight: 900; color: #14532d;
    font-variant-numeric: tabular-nums;
}
.landing-proof-stats .stat span {
    font-size: 0.8rem; color: #9ca3af; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.05em;
}
.landing-proof-stats .stat::after {
    content: ''; position: absolute; right: -1.75rem; top: 50%;
    transform: translateY(-50%); width: 4px; height: 4px;
    background: #d1d5db; border-radius: 50%;
}
.landing-proof-stats .stat:last-child::after { display: none; }

/* === Benefits Grid (Enhanced) === */
.landing-benefits {
    padding: 5rem 0; background: #fff; position: relative;
}
.landing-benefits .section-header {
    text-align: center; margin-bottom: 3.5rem;
}
.landing-benefits .section-header h2 {
    font-size: 2.5rem; font-weight: 900; letter-spacing: -0.025em; margin-bottom: 0.6rem;
}
.landing-benefits .section-header p {
    font-size: 1.05rem; color: #6b7280; max-width: 480px; margin: 0 auto;
}
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.benefit-card {
    padding: 2rem 1.75rem; border: 1px solid #eef0f2; border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center; position: relative; overflow: hidden;
    background: #fff;
}
.benefit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--card-accent, #16a34a), var(--card-accent-end, #059669));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
    border-color: #d1fae5;
    box-shadow: 0 16px 48px rgba(22,163,74,0.08), 0 0 0 1px rgba(22,163,74,0.05);
    transform: translateY(-6px);
}
.benefit-icon {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1.15rem;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon { transform: scale(1.1) rotate(-3deg); }
.benefit-card h3 {
    font-size: 1.02rem; font-weight: 700; color: #14532d; margin-bottom: 0.45rem;
}
.benefit-card p {
    font-size: 0.84rem; color: #6b7280; line-height: 1.6;
}

/* Scroll reveal for benefit cards */
.benefit-card { opacity: 0; animation: slideUp 0.6s ease-out forwards; }
.benefit-card:nth-child(1) { animation-delay: 0.05s; }
.benefit-card:nth-child(2) { animation-delay: 0.12s; }
.benefit-card:nth-child(3) { animation-delay: 0.19s; }
.benefit-card:nth-child(4) { animation-delay: 0.26s; }
.benefit-card:nth-child(5) { animation-delay: 0.33s; }
.benefit-card:nth-child(6) { animation-delay: 0.40s; }
.benefit-card:nth-child(7) { animation-delay: 0.47s; }

/* === Testimonial / Quote (Enhanced) === */
.landing-quote {
    padding: 5rem 0; background: #f9fafb;
}
.quote-card {
    max-width: 660px; margin: 0 auto; text-align: center;
    padding: 3rem; background: #fff; border: 1px solid #e5e7eb;
    border-radius: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    position: relative;
}
.quote-card::before {
    content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 3px;
    background: linear-gradient(90deg, transparent, #16a34a, transparent);
    border-radius: 0 0 4px 4px;
}
.quote-card .quote-icon {
    font-size: 2.5rem; color: #d1fae5; margin-bottom: 1.25rem;
}
.quote-card blockquote {
    font-size: 1.15rem; font-weight: 500; color: #1f2937;
    line-height: 1.75; font-style: italic; margin-bottom: 1.25rem;
}
.quote-card .quote-author {
    font-size: 0.92rem; font-weight: 700; color: #14532d;
}
.quote-card .quote-role {
    font-size: 0.8rem; color: #9ca3af; margin-top: 0.1rem;
}

/* Star rating */
.quote-stars {
    display: flex; justify-content: center; gap: 0.2rem;
    margin-bottom: 1rem; color: #f59e0b; font-size: 0.9rem;
}

/* === Feature Rows (Enhanced) === */
.landing-feature-rows { padding: 5rem 0; background: #fff; }
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; margin-bottom: 5rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-text h3 {
    font-size: 1.6rem; font-weight: 800; color: #14532d; margin-bottom: 0.65rem;
    letter-spacing: -0.01em;
}
.feature-row-text p {
    font-size: 0.95rem; color: #6b7280; line-height: 1.7; margin-bottom: 1.15rem;
}
.feature-row-text ul {
    list-style: none; display: flex; flex-direction: column; gap: 0.55rem;
}
.feature-row-text li {
    font-size: 0.88rem; color: #374151; display: flex; align-items: center; gap: 0.5rem;
}
.feature-row-text li i { color: #16a34a; font-size: 0.72rem; }
.feature-row-visual {
    background: linear-gradient(145deg, #f8faf9, #f0fdf4);
    border: 1px solid #e2ede6; border-radius: 20px;
    padding: 2.5rem; display: flex; align-items: center; justify-content: center;
    min-height: 300px; position: relative; overflow: hidden;
}
.feature-row-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(22,163,74,0.04) 0%, transparent 60%);
}
.feature-row-visual .visual-icon {
    font-size: 5.5rem; color: #bbf7d0;
    animation: floatSlow 5s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(22,163,74,0.08));
}

/* === Interactive Dashboard Mockup === */
.dashboard-mockup {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.04);
    border: 1px solid #e2e5e9;
    animation: scaleIn 0.9s ease-out 0.4s both;
    position: relative;
}
.dashboard-mockup .mock-topbar {
    padding: 0.65rem 1rem; background: #f8fafc; border-bottom: 1px solid #e5e7eb;
    display: flex; align-items: center; gap: 0.65rem;
}
.mock-dots { display: flex; gap: 0.3rem; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #22c55e; }
.mock-url {
    flex: 1; background: #fff; border: 1px solid #e5e7eb; border-radius: 6px;
    padding: 0.25rem 0.6rem; font-size: 0.68rem; color: #9ca3af;
}
.dashboard-mockup .mock-body { padding: 1.25rem; }
.mock-stat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin-bottom: 1rem;
}
.mock-stat-card {
    background: #f9fafb; border-radius: 10px; padding: 0.7rem; text-align: center;
    border: 1px solid #f3f4f6;
}
.mock-stat-card .num {
    font-size: 1.4rem; font-weight: 900; color: #14532d;
}
.mock-stat-card .label {
    font-size: 0.62rem; color: #9ca3af; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mock-product-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.6rem 0.75rem; border: 1px solid #f3f4f6; border-radius: 10px;
    margin-bottom: 0.4rem; transition: all 0.2s;
}
.mock-product-row:hover { background: #fafffe; border-color: #d1fae5; }
.mock-product-name {
    font-size: 0.78rem; font-weight: 700; color: #1a1a2e;
    display: flex; align-items: center; gap: 0.4rem;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-tags { display: flex; gap: 0.3rem; }
.mock-tag {
    font-size: 0.6rem; font-weight: 700; padding: 0.12rem 0.4rem;
    border-radius: 4px; letter-spacing: 0.02em;
}
.mock-tag.released { background: #ecfdf5; color: #059669; }
.mock-tag.dev { background: #fef3c7; color: #d97706; }
.mock-tag.planning { background: #eff6ff; color: #3b82f6; }
.mock-tag.testing { background: #faf5ff; color: #9333ea; }

/* Live activity indicator */
.mock-live {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.65rem; font-weight: 600; color: #16a34a;
    margin-top: 0.75rem; padding-top: 0.65rem; border-top: 1px solid #f3f4f6;
}
.mock-live .live-dot {
    width: 6px; height: 6px; background: #16a34a; border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* === Before/After Section === */
.before-after {
    padding: 5rem 0; background: #f9fafb;
}
.before-after .section-header {
    text-align: center; margin-bottom: 3rem;
}
.before-after .section-header h2 {
    font-size: 2.5rem; font-weight: 900; letter-spacing: -0.025em; margin-bottom: 0.6rem;
}
.before-after .section-header p {
    font-size: 1.05rem; color: #6b7280; max-width: 500px; margin: 0 auto;
}
.ba-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem;
    max-width: 850px; margin: 0 auto; align-items: stretch;
}
.ba-card {
    padding: 2rem; border-radius: 16px; position: relative;
}
.ba-card.before {
    background: #fef2f2; border: 1px solid #fecaca;
}
.ba-card.after {
    background: #ecfdf5; border: 1px solid #bbf7d0;
}
.ba-card h3 {
    font-size: 0.82rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.ba-card.before h3 { color: #dc2626; }
.ba-card.after h3 { color: #16a34a; }
.ba-card ul {
    list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
}
.ba-card li {
    font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.5rem;
    line-height: 1.5;
}
.ba-card.before li { color: #991b1b; }
.ba-card.before li i { color: #ef4444; margin-top: 0.2rem; font-size: 0.72rem; }
.ba-card.after li { color: #14532d; }
.ba-card.after li i { color: #22c55e; margin-top: 0.2rem; font-size: 0.72rem; }
.ba-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #d1d5db;
}

/* === Pain Points (Enhanced) === */
.pain-points {
    padding: 2.5rem 0; background: #fffbeb;
    border-top: 1px solid #fef3c7; border-bottom: 1px solid #fef3c7;
    text-align: center;
}
.pain-points h4 {
    font-size: 1rem; font-weight: 800; color: #92400e; margin-bottom: 0.85rem;
}
.pain-items {
    display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap;
}
.pain-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.88rem; color: #78350f; font-weight: 500;
    padding: 0.45rem 1rem; background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.15); border-radius: 8px;
}
.pain-item i { color: #dc2626; font-size: 0.75rem; }

/* === Comparison Table (Enhanced) === */
.comparison-table {
    width: 100%; border-collapse: collapse; margin-top: 1.5rem;
    border-radius: 12px; overflow: hidden;
}
.comparison-table th, .comparison-table td {
    padding: 0.9rem 1.15rem; font-size: 0.88rem; text-align: left;
    border-bottom: 1px solid #f3f4f6;
}
.comparison-table th {
    font-weight: 700; color: #14532d; background: #f0fdf4;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.comparison-table td { color: #4b5563; }
.comparison-table td i.fa-check { color: #16a34a; font-size: 1rem; }
.comparison-table td i.fa-xmark { color: #e5e7eb; }
.comparison-table tr:hover td { background: #f0fdf4; }
.comparison-table td:last-child { font-weight: 600; }

/* === Bottom CTA (Enhanced) === */
.landing-bottom-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a3622 0%, #14532d 30%, #166534 60%, #15803d 100%);
    text-align: center; position: relative; overflow: hidden;
}
.landing-bottom-cta::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.landing-bottom-cta::after {
    content: ''; position: absolute;
    top: -50%; left: -10%; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 60%);
}
.landing-bottom-cta .inner {
    position: relative; z-index: 1;
}
.landing-bottom-cta h2 {
    font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}
.landing-bottom-cta p {
    font-size: 1.08rem; color: rgba(255,255,255,0.6);
    max-width: 500px; margin: 0 auto 2.25rem;
}
.landing-bottom-cta .btn-cta-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.5rem; background: #fff; color: #14532d;
    font-weight: 800; font-size: 1.05rem; border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.landing-bottom-cta .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.landing-bottom-cta .sub-text {
    margin-top: 1.15rem; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.landing-bottom-cta .trust-badges {
    display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem;
}
.landing-bottom-cta .trust-badge {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.landing-bottom-cta .trust-badge i { color: rgba(34,197,94,0.7); }

/* === Mini Footer === */
.landing-footer {
    padding: 1.5rem 0; background: #0a1628; text-align: center;
}
.landing-footer p { font-size: 0.78rem; color: #4b5563; }
.landing-footer a { color: #6b7280; transition: color 0.2s; }
.landing-footer a:hover { color: #16a34a; }

/* === Checklist (Enhanced) === */
.checklist {
    list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 1rem 0;
}
.checklist li {
    display: flex; align-items: flex-start; gap: 0.55rem;
    font-size: 0.92rem; color: #374151; line-height: 1.5;
    padding: 0.35rem 0;
}
.checklist li i { color: #16a34a; margin-top: 0.22rem; font-size: 0.78rem; flex-shrink: 0; }

/* === "New" Badge for API Feature === */
.new-badge {
    display: inline-flex; align-items: center;
    font-size: 0.58rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.06em; color: #fff; background: linear-gradient(135deg, #7c3aed, #6d28d9);
    padding: 0.12rem 0.4rem; border-radius: 4px; margin-left: 0.4rem;
    vertical-align: middle; animation: pulse 2s ease-in-out infinite;
}

/* === How It Works Steps (Horizontal) === */
.steps-horizontal {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative;
    max-width: 780px; margin: 0 auto;
}
.steps-horizontal::before {
    content: ''; position: absolute; top: 28px; left: 15%; right: 15%;
    height: 2px; background: linear-gradient(90deg, #d1fae5, #16a34a, #d1fae5);
    z-index: 0;
}
.step-h {
    text-align: center; position: relative; z-index: 1;
}
.step-h .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.25rem; margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(22,163,74,0.25);
    transition: transform 0.3s ease;
}
.step-h:hover .step-num { transform: scale(1.1); }
.step-h h4 {
    font-size: 1rem; font-weight: 700; color: #14532d; margin-bottom: 0.3rem;
}
.step-h p {
    font-size: 0.82rem; color: #6b7280; line-height: 1.5;
    max-width: 200px; margin: 0 auto;
}

/* === Ribbon / Label === */
.ribbon {
    position: absolute; top: 16px; right: -8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    padding: 0.25rem 0.75rem 0.25rem 0.6rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(245,158,11,0.3);
    animation: ribbonWave 3s ease-in-out infinite;
}
.ribbon::after {
    content: ''; position: absolute; right: 0; bottom: -6px;
    border-top: 6px solid #b45309; border-right: 8px solid transparent;
}

/* === AI Page: Terminal Mockup === */
.terminal-mockup {
    background: #0f172a; border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05) inset;
    animation: scaleIn 0.9s ease-out 0.4s both;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', monospace;
}
.terminal-topbar {
    padding: 0.65rem 1rem; background: #1e293b;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 0.65rem;
}
.terminal-topbar .mock-dots span:nth-child(1) { background: #ef4444; }
.terminal-topbar .mock-dots span:nth-child(2) { background: #f59e0b; }
.terminal-topbar .mock-dots span:nth-child(3) { background: #22c55e; }
.terminal-title {
    font-size: 0.68rem; color: #64748b; font-weight: 500;
    font-family: 'Inter', sans-serif;
}
.terminal-body {
    padding: 1.25rem 1.35rem; font-size: 0.78rem; line-height: 1.85;
    color: #94a3b8; overflow: hidden; min-height: 260px;
}
.terminal-body .line { margin-bottom: 0.15rem; opacity: 0; animation: slideUp 0.4s ease-out forwards; }
.terminal-body .line:nth-child(1) { animation-delay: 0.6s; }
.terminal-body .line:nth-child(2) { animation-delay: 1.2s; }
.terminal-body .line:nth-child(3) { animation-delay: 1.8s; }
.terminal-body .line:nth-child(4) { animation-delay: 2.4s; }
.terminal-body .line:nth-child(5) { animation-delay: 3.0s; }
.terminal-body .line:nth-child(6) { animation-delay: 3.6s; }
.terminal-body .line:nth-child(7) { animation-delay: 4.2s; }
.terminal-body .line:nth-child(8) { animation-delay: 4.8s; }
.terminal-body .line:nth-child(9) { animation-delay: 5.4s; }
.terminal-body .line:nth-child(10) { animation-delay: 6.0s; }
.terminal-body .comment { color: #475569; }
.terminal-body .prompt { color: #22c55e; }
.terminal-body .cmd { color: #e2e8f0; }
.terminal-body .string { color: #34d399; }
.terminal-body .key { color: #7dd3fc; }
.terminal-body .number { color: #fbbf24; }
.terminal-body .response { color: #a78bfa; }
.terminal-body .success { color: #4ade80; }
.terminal-body .url { color: #60a5fa; }
.terminal-body .cursor-blink {
    display: inline-block; width: 8px; height: 15px;
    background: #22c55e; vertical-align: text-bottom;
    animation: livePulse 1s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* AI Agent Logos Grid */
.agent-logos {
    display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
    padding: 1rem 0;
}
.agent-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    transition: transform 0.3s ease;
}
.agent-logo-item:hover { transform: translateY(-4px); }
.agent-logo-item .logo-circle {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 900;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid #eef0f2;
    transition: all 0.3s;
}
.agent-logo-item:hover .logo-circle {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: scale(1.05);
}
.agent-logo-item span {
    font-size: 0.75rem; font-weight: 600; color: #6b7280;
}

/* Code block */
.code-block {
    background: #0f172a; border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.code-block-header {
    padding: 0.55rem 1rem; background: #1e293b;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.code-block-header span {
    font-size: 0.7rem; color: #64748b; font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.code-block-header .lang-tag {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 0.12rem 0.5rem; border-radius: 4px;
}
.code-block pre {
    padding: 1.15rem 1.25rem; font-size: 0.76rem; line-height: 1.8;
    color: #cbd5e1; overflow-x: auto; margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* AI workflow visual */
.ai-workflow {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
    align-items: center; max-width: 800px; margin: 0 auto;
}
.ai-workflow-step {
    text-align: center; padding: 1.75rem 1rem;
    background: #fff; border: 1px solid #eef0f2; border-radius: 16px;
    transition: all 0.3s;
}
.ai-workflow-step:hover {
    border-color: #d1fae5; box-shadow: 0 12px 40px rgba(22,163,74,0.06);
    transform: translateY(-4px);
}
.ai-workflow-step .wf-icon {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.ai-workflow-step h4 {
    font-size: 0.95rem; font-weight: 700; color: #14532d; margin-bottom: 0.3rem;
}
.ai-workflow-step p {
    font-size: 0.78rem; color: #6b7280; line-height: 1.5;
}
.ai-workflow-arrow {
    font-size: 1.25rem; color: #d1d5db; text-align: center; flex-shrink: 0;
    padding: 0 0.25rem;
}

/* Use case cards (horizontal) */
.usecase-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.usecase-card {
    display: flex; gap: 1rem; padding: 1.5rem; border: 1px solid #eef0f2;
    border-radius: 14px; background: #fff; transition: all 0.3s;
    align-items: flex-start;
}
.usecase-card:hover {
    border-color: #d1fae5; box-shadow: 0 10px 36px rgba(22,163,74,0.06);
    transform: translateY(-3px);
}
.usecase-card .uc-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.usecase-card h4 {
    font-size: 0.92rem; font-weight: 700; color: #14532d; margin-bottom: 0.25rem;
}
.usecase-card p {
    font-size: 0.82rem; color: #6b7280; line-height: 1.55;
}

/* === IDE Context Panel Mockup === */
.ide-mockup {
    background: #1e293b; border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
    animation: scaleIn 0.9s ease-out 0.4s both;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
    border: 1px solid rgba(255,255,255,0.06);
}
.ide-topbar {
    padding: 0.55rem 0.85rem; background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 0.6rem;
}
.ide-topbar .mock-dots span { width: 9px; height: 9px; }
.ide-tabs {
    display: flex; gap: 0; margin-left: 0.5rem;
}
.ide-tab {
    padding: 0.3rem 0.75rem; font-size: 0.65rem; font-weight: 500;
    font-family: 'Inter', sans-serif; border-radius: 6px 6px 0 0;
    color: #64748b; cursor: default;
}
.ide-tab.active {
    background: #1e293b; color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.06); border-bottom: none;
}
.ide-split {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 290px;
}
.ide-editor {
    padding: 1rem 1.15rem; font-size: 0.72rem; line-height: 1.85;
    color: #94a3b8; border-right: 1px solid rgba(255,255,255,0.06);
}
.ide-editor .ln {
    color: #334155; user-select: none; display: inline-block;
    width: 22px; text-align: right; margin-right: 0.75rem;
}
.ide-context-panel {
    background: rgba(15,23,42,0.6); padding: 0.85rem 1rem;
    font-family: 'Inter', sans-serif;
}
.ide-context-panel .cp-header {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.68rem; font-weight: 700; color: #0891b2;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 0.85rem; padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ide-context-panel .cp-header i { font-size: 0.72rem; }
.cp-section {
    margin-bottom: 0.75rem;
}
.cp-section .cp-label {
    font-size: 0.62rem; font-weight: 600; color: #475569;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem;
}
.cp-section .cp-value {
    font-size: 0.72rem; color: #cbd5e1; font-weight: 500; line-height: 1.5;
}
.cp-section .cp-tag {
    display: inline-flex; align-items: center; gap: 0.2rem;
    font-size: 0.6rem; font-weight: 700; padding: 0.1rem 0.4rem;
    border-radius: 4px; margin-right: 0.25rem; margin-top: 0.2rem;
}
.cp-tag.teal { background: rgba(8,145,178,0.12); color: #22d3ee; }
.cp-tag.green { background: rgba(34,197,94,0.12); color: #4ade80; }
.cp-tag.amber { background: rgba(245,158,11,0.12); color: #fbbf24; }
.cp-tag.purple { background: rgba(167,139,250,0.12); color: #a78bfa; }
.cp-live-dot {
    width: 5px; height: 5px; background: #22d3ee; border-radius: 50%;
    display: inline-block; margin-right: 0.25rem;
    animation: livePulse 1.5s ease-in-out infinite;
}

/* Layer Diagram */
.layer-diagram {
    max-width: 640px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0; align-items: center;
}
.layer-box {
    width: 100%; padding: 1.5rem 2rem; border-radius: 14px;
    text-align: center; position: relative;
    transition: all 0.3s;
}
.layer-box:hover { transform: scale(1.02); }
.layer-box h4 {
    font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem;
}
.layer-box p {
    font-size: 0.82rem; line-height: 1.5;
}
.layer-connector {
    width: 2px; height: 28px; position: relative;
}
.layer-connector::before {
    content: ''; position: absolute; left: -4px; top: 0;
    width: 10px; height: 100%;
    background: linear-gradient(180deg, var(--conn-from), var(--conn-to));
    border-radius: 5px;
}
.layer-connector i {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem; z-index: 1;
}

/* Split comparison panel */
.split-compare {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    max-width: 820px; margin: 0 auto;
}
.split-panel {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.split-panel-header {
    padding: 0.7rem 1rem; display: flex; align-items: center; gap: 0.45rem;
    font-size: 0.78rem; font-weight: 700; font-family: 'Inter', sans-serif;
}
.split-panel.bad .split-panel-header {
    background: #451a03; color: #fbbf24; border-bottom: 1px solid #78350f;
}
.split-panel.good .split-panel-header {
    background: #052e16; color: #4ade80; border-bottom: 1px solid #14532d;
}
.split-panel pre {
    padding: 1rem 1.15rem; font-size: 0.72rem; line-height: 1.85; margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    min-height: 220px;
}
.split-panel.bad pre { background: #1c1410; color: #d6a77a; }
.split-panel.good pre { background: #0a1a10; color: #86d9a8; }
.split-panel.bad { border-color: rgba(245,158,11,0.15); }
.split-panel.good { border-color: rgba(34,197,94,0.15); }

/* Scenario cards (numbered) */
.scenario-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.scenario-card {
    padding: 1.75rem; border: 1px solid #eef0f2; border-radius: 16px;
    background: #fff; transition: all 0.35s; position: relative;
    overflow: hidden;
}
.scenario-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.scenario-card:hover::before { transform: scaleX(1); }
.scenario-card:hover {
    border-color: #cffafe; box-shadow: 0 12px 40px rgba(8,145,178,0.06);
    transform: translateY(-5px);
}
.scenario-num {
    width: 32px; height: 32px; border-radius: 50%; margin-bottom: 1rem;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.82rem;
}
.scenario-card h4 {
    font-size: 0.95rem; font-weight: 700; color: #134e4a; margin-bottom: 0.35rem;
}
.scenario-card p {
    font-size: 0.82rem; color: #6b7280; line-height: 1.6;
}
.scenario-card .sc-result {
    margin-top: 0.75rem; padding: 0.5rem 0.65rem;
    background: #ecfeff; border-radius: 8px;
    font-size: 0.78rem; font-weight: 600; color: #0e7490;
    display: flex; align-items: center; gap: 0.35rem;
}
.scenario-card .sc-result i { font-size: 0.68rem; }

/* Teal gradient text variant */
.gradient-text-teal {
    background: linear-gradient(135deg, #0891b2, #06b6d4, #22d3ee, #0891b2);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradientShift 5s ease infinite;
}

/* === AI Agents Mini Section (for non-AI landing pages) === */
.ai-mini {
    padding: 4.5rem 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}
.ai-mini::before {
    content: ''; position: absolute;
    top: -40%; right: -15%; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 60%);
    animation: float 9s ease-in-out infinite;
}
.ai-mini .container { position: relative; z-index: 1; }
.ai-mini-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.ai-mini-text h3 {
    font-size: 1.75rem; font-weight: 900; color: #fff;
    margin-bottom: 0.65rem; letter-spacing: -0.02em;
}
.ai-mini-text .gradient-text-ai {
    background: linear-gradient(135deg, #a78bfa, #818cf8, #60a5fa, #a78bfa);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradientShift 5s ease infinite;
}
.ai-mini-text p {
    font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7;
    margin-bottom: 1.25rem;
}
.ai-mini-points {
    display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem;
}
.ai-mini-points span {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.ai-mini-points i { color: #a78bfa; font-size: 0.72rem; }
.ai-mini-tools {
    display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.ai-mini-tools span {
    padding: 0.28rem 0.6rem; border-radius: 6px; font-size: 0.7rem; font-weight: 600;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
}
.ai-mini-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff; font-weight: 700; font-size: 0.88rem; border-radius: 10px;
    transition: all 0.3s; box-shadow: 0 4px 18px rgba(124,58,237,0.3);
}
.ai-mini-cta:hover {
    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}
/* AI mini terminal */
.ai-mini-terminal {
    background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.ai-mini-terminal .mt-bar {
    padding: 0.5rem 0.75rem; background: rgba(30,41,59,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 0.45rem;
}
.ai-mini-terminal .mt-bar .dots { display: flex; gap: 0.22rem; }
.ai-mini-terminal .mt-bar .dots span { width: 7px; height: 7px; border-radius: 50%; }
.ai-mini-terminal .mt-bar .dots span:nth-child(1) { background: #ef4444; }
.ai-mini-terminal .mt-bar .dots span:nth-child(2) { background: #f59e0b; }
.ai-mini-terminal .mt-bar .dots span:nth-child(3) { background: #22c55e; }
.ai-mini-terminal .mt-bar .mt-title {
    font-size: 0.62rem; color: #64748b; font-family: 'Inter', sans-serif;
}
.ai-mini-terminal .mt-body {
    padding: 0.9rem 1rem; font-size: 0.7rem; line-height: 1.8;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
    color: #94a3b8;
}
.ai-mini-terminal .c { color: #475569; }
.ai-mini-terminal .p { color: #a78bfa; }
.ai-mini-terminal .u { color: #60a5fa; }
.ai-mini-terminal .r { color: #4ade80; }
.ai-mini-terminal .v { color: #fbbf24; }
@media (max-width: 768px) {
    .ai-mini-inner { grid-template-columns: 1fr; gap: 2rem; }
    .ai-mini-text h3 { font-size: 1.5rem; }
    .ai-mini-terminal { order: -1; max-width: 420px; margin: 0 auto; }
}

/* === Dark Hero Section === */
.dark-hero {
    position: relative; padding: 7rem 0 5rem; overflow: hidden;
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(160deg, #020617 0%, #0f172a 30%, #1e1b4b 60%, #0f172a 100%);
}
.dark-hero::before {
    content: ''; position: absolute;
    top: -30%; right: -10%; width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
    animation: float 9s ease-in-out infinite;
}
.dark-hero::after {
    content: ''; position: absolute;
    bottom: -25%; left: -15%; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 65%);
    animation: float 11s ease-in-out infinite 3s;
}
.dark-hero .landing-hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.dark-hero .landing-hero-text { max-width: 560px; animation: slideUp 0.8s ease-out; }
.dark-hero .landing-hero-text h1 {
    font-size: 3.25rem; font-weight: 900; line-height: 1.08;
    letter-spacing: -0.035em; color: #fff; margin-bottom: 1.25rem;
    animation: slideUp 0.8s ease-out 0.1s both;
}
.dark-hero .landing-hero-text h1 .gradient-text-ai {
    background: linear-gradient(135deg, #a78bfa, #818cf8, #60a5fa, #a78bfa);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradientShift 5s ease infinite;
}
.dark-hero .landing-hero-text .hero-sub {
    color: rgba(255,255,255,0.55); animation: slideUp 0.8s ease-out 0.2s both;
}
.dark-hero .hero-badge-dark {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem; background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.25); color: #a78bfa;
    font-size: 0.78rem; font-weight: 600; border-radius: 20px;
    margin-bottom: 1.5rem; animation: popIn 0.6s ease-out 0.2s both;
}
.dark-hero .hero-trust span { color: rgba(255,255,255,0.4); }
.dark-hero .hero-trust i { color: #a78bfa; }
.dark-hero .btn-hero-primary {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    animation: none;
    box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.dark-hero .btn-hero-primary::after {
    background: linear-gradient(135deg, #7c3aed, #6d28d9, #818cf8, #7c3aed);
}
.dark-hero .btn-hero-primary:hover {
    box-shadow: 0 12px 40px rgba(124,58,237,0.5) !important;
}
.dark-hero .btn-hero-secondary {
    border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7);
    background: transparent;
}
.dark-hero .btn-hero-secondary:hover {
    border-color: rgba(167,139,250,0.4); color: #a78bfa;
}

/* === Chat Mockup === */
.chat-mockup {
    background: rgba(15,23,42,0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
    animation: scaleIn 0.9s ease-out 0.4s both;
    border: 1px solid rgba(255,255,255,0.06);
}
.chat-topbar {
    padding: 0.7rem 1rem; background: rgba(30,41,59,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 0.6rem;
}
.chat-topbar .mock-dots span { width: 9px; height: 9px; }
.chat-topbar-title {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: 0.78rem; font-weight: 600; color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}
.chat-topbar-title .agent-dot {
    width: 7px; height: 7px; background: #a78bfa; border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.chat-body {
    padding: 1.15rem; display: flex; flex-direction: column; gap: 0.85rem;
    min-height: 310px;
}
.chat-msg {
    display: flex; gap: 0.55rem; max-width: 92%;
    opacity: 0; animation: slideUp 0.5s ease-out forwards;
}
.chat-msg:nth-child(1) { animation-delay: 0.8s; }
.chat-msg:nth-child(2) { animation-delay: 1.8s; }
.chat-msg:nth-child(3) { animation-delay: 3.0s; }
.chat-msg:nth-child(4) { animation-delay: 4.2s; }
.chat-msg:nth-child(5) { animation-delay: 5.4s; }
.chat-msg.agent { align-self: flex-start; }
.chat-msg.system { align-self: flex-end; flex-direction: row-reverse; }
.chat-avatar {
    width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700;
}
.chat-msg.agent .chat-avatar { background: rgba(124,58,237,0.2); color: #a78bfa; }
.chat-msg.system .chat-avatar { background: rgba(34,197,94,0.15); color: #4ade80; }
.chat-bubble {
    padding: 0.6rem 0.85rem; border-radius: 12px;
    font-size: 0.75rem; line-height: 1.6; font-family: 'Inter', sans-serif;
}
.chat-msg.agent .chat-bubble {
    background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.15);
    color: #c4b5fd; border-top-left-radius: 4px;
}
.chat-msg.system .chat-bubble {
    background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.12);
    color: #86efac; border-top-right-radius: 4px;
}
.chat-bubble .action {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: rgba(255,255,255,0.06); padding: 0.15rem 0.45rem;
    border-radius: 4px; font-size: 0.68rem; font-weight: 600;
    margin-top: 0.35rem; font-family: monospace;
}
.chat-msg.agent .chat-bubble .action { color: #e9d5ff; }
.chat-msg.system .chat-bubble .action { color: #bbf7d0; }
.chat-typing {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 0.85rem; opacity: 0; animation: slideUp 0.4s ease-out 6.2s forwards;
}
.chat-typing .typing-dots { display: flex; gap: 0.2rem; }
.chat-typing .typing-dots span {
    width: 5px; height: 5px; background: #64748b; border-radius: 50%;
    animation: livePulse 1.2s ease-in-out infinite;
}
.chat-typing .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
.chat-typing-label { font-size: 0.68rem; color: #64748b; }

/* === Timeline / Journey === */
.timeline {
    position: relative; max-width: 700px; margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, #d1fae5, #16a34a, #7c3aed, #d1fae5);
}
.timeline-item {
    position: relative; padding: 0 0 2.5rem 1.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: -32px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    border: 3px solid #16a34a; background: #fff;
    z-index: 1;
}
.timeline-item:nth-child(even)::before { border-color: #7c3aed; }
.timeline-item .tl-time {
    font-size: 0.72rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem;
}
.timeline-item .tl-card {
    padding: 1.25rem; border: 1px solid #eef0f2; border-radius: 14px;
    background: #fff; transition: all 0.3s;
}
.timeline-item .tl-card:hover {
    border-color: #d1fae5; box-shadow: 0 8px 28px rgba(22,163,74,0.05);
    transform: translateX(4px);
}
.timeline-item .tl-card h4 {
    font-size: 0.95rem; font-weight: 700; color: #14532d; margin-bottom: 0.3rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.timeline-item .tl-card p {
    font-size: 0.82rem; color: #6b7280; line-height: 1.6;
}
.timeline-item .tl-card .tl-tag {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.65rem; font-weight: 700; padding: 0.12rem 0.45rem;
    border-radius: 4px; margin-top: 0.5rem;
}
.tl-tag.ai { background: rgba(124,58,237,0.08); color: #7c3aed; }
.tl-tag.human { background: rgba(22,163,74,0.08); color: #16a34a; }

/* === Glow Stats (Dark Section) === */
.glow-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #020617, #0f172a, #1e1b4b);
    position: relative; overflow: hidden;
}
.glow-stats::before {
    content: ''; position: absolute;
    top: -40%; left: 30%; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 60%);
}
.glow-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
    position: relative; z-index: 1;
}
.glow-stat-card {
    text-align: center; padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; transition: all 0.3s;
    position: relative; overflow: hidden;
}
.glow-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    opacity: 0; transition: opacity 0.3s;
}
.glow-stat-card:hover::before { opacity: 1; }
.glow-stat-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(124,58,237,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124,58,237,0.1);
}
.glow-stat-card .gs-number {
    font-size: 2.5rem; font-weight: 900; color: #fff;
    margin-bottom: 0.25rem; font-variant-numeric: tabular-nums;
}
.glow-stat-card .gs-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}

/* === Loop Diagram === */
.loop-diagram {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    max-width: 820px; margin: 0 auto; position: relative;
}
.loop-diagram::before {
    content: ''; position: absolute; top: 38px; left: 10%; right: 10%;
    height: 2px; background: linear-gradient(90deg, #d1fae5, #7c3aed, #60a5fa, #d1fae5);
    z-index: 0;
}
.loop-step {
    text-align: center; position: relative; z-index: 1;
}
.loop-step .ls-icon {
    width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; position: relative;
    transition: all 0.3s;
}
.loop-step:hover .ls-icon { transform: scale(1.1); }
.loop-step .ls-num {
    position: absolute; top: -4px; right: -4px;
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; color: #14532d; font-size: 0.65rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.loop-step h4 {
    font-size: 0.92rem; font-weight: 700; color: #14532d; margin-bottom: 0.25rem;
}
.loop-step p {
    font-size: 0.78rem; color: #6b7280; line-height: 1.5;
    max-width: 170px; margin: 0 auto;
}

/* === Responsive === */
@media (max-width: 768px) {
    .landing-hero { min-height: auto; padding: 6rem 0 3rem; }
    .dark-hero { min-height: auto; padding: 6rem 0 3rem; }
    .dark-hero .landing-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .dark-hero .landing-hero-text { margin: 0 auto; }
    .dark-hero .landing-hero-text h1 { font-size: 2.25rem; }
    .chat-body { min-height: auto; }
    .chat-mockup { max-width: 420px; margin: 0 auto; }
    .glow-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { padding-left: 30px; }
    .loop-diagram { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .loop-diagram::before { display: none; }
    .ide-split { grid-template-columns: 1fr; }
    .ide-context-panel { border-top: 1px solid rgba(255,255,255,0.06); }
    .ide-editor { border-right: none; }
    .split-compare { grid-template-columns: 1fr; }
    .scenario-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .layer-diagram { max-width: 100%; }
    .landing-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .landing-hero-text { margin: 0 auto; }
    .landing-hero-text h1 { font-size: 2.25rem; }
    .landing-cta-box { max-width: 420px; margin: 0 auto; }
    .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .feature-row { grid-template-columns: 1fr; gap: 2rem; }
    .feature-row.reverse { direction: ltr; }
    .feature-row-visual { min-height: 200px; order: -1; }
    .landing-proof-stats { flex-wrap: wrap; gap: 1.5rem; }
    .landing-proof-stats .stat::after { display: none; }
    .landing-bottom-cta h2 { font-size: 1.85rem; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-arrow { transform: rotate(90deg); }
    .comparison-table { font-size: 0.82rem; }
    .comparison-table th, .comparison-table td { padding: 0.65rem 0.5rem; }
    .floating-notifs { display: none; }
    .steps-horizontal { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps-horizontal::before { display: none; }
    .pain-items { gap: 0.75rem; }
    .dashboard-mockup .mock-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-workflow { grid-template-columns: 1fr; gap: 1rem; }
    .ai-workflow-arrow { transform: rotate(90deg); }
    .usecase-grid { grid-template-columns: 1fr; }
    .agent-logos { gap: 1.25rem; }
    .agent-logo-item .logo-circle { width: 50px; height: 50px; font-size: 1.2rem; }
    .terminal-body { font-size: 0.7rem; min-height: auto; }
}
@media (max-width: 480px) {
    .landing-hero-text h1 { font-size: 1.85rem; }
    .landing-proof-stats { gap: 1rem; }
    .landing-benefits .section-header h2 { font-size: 1.85rem; }
    .before-after .section-header h2 { font-size: 1.85rem; }
}
