/* Subtle neutral backgrounds, calmer motion */
#home { position: relative; overflow: hidden; }
.bg-orbit, .bg-gradient { position: absolute; inset: -10% -10% auto -10%; pointer-events: none; }

/* Replace neon gradients with faint vignette */
.bg-gradient {
    height: 46vh; z-index: -2;
    background:
        radial-gradient(40% 30% at 20% 10%, rgba(2,8,23,0.04), transparent 60%),
        radial-gradient(35% 30% at 85% 0%, rgba(2,8,23,0.04), transparent 70%),
        radial-gradient(25% 20% at 10% 85%, rgba(2,8,23,0.03), transparent 70%);
    filter: none;
}
.bg-orbit { display: none; }

/* Hero */
.hero.container { padding-top: clamp(56px, 12vw, 140px); padding-bottom: clamp(36px, 6vw, 70px); position: relative; }
.hero .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 12px; margin-bottom: 16px; border-radius: 999px;
    background: #f3f4f6; border: 1px solid var(--border); color: #374151; font-size: 14px;
}
.hero h1 { margin-top: 10px; color: var(--text); }
.hero .subtitle { margin-top: 16px; color: #3b4456; }
.hero-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero .channels { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.hero-panel {
    margin-top: 26px; padding: 14px 16px; position: relative; overflow: hidden;
    border-radius: 16px; background: #ffffff; border: 1px solid var(--border);
}
.ticker { display: grid; grid-auto-flow: column; gap: 28px; white-space: nowrap; animation: ticker-slide 28s linear infinite; }
.ticker .tick { color: #111827; opacity: .85; }
@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.status-dots { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 6px; }
.status-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: #e5e7eb; }
.status-dots .dot.active { background: #111827; }

/* Hero art becomes a soft neutral card */
.hero-art {
    position: relative; margin-top: 32px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow-elev);
}
.hero-art img { width: 100%; height: clamp(220px, 46vw, 480px); object-fit: cover; filter: saturate(100%) contrast(100%); transform: none; animation: none; }
.hero-art figcaption { position: absolute; bottom: 8px; right: 12px; font-size: 12px; color: #6b7280; }
.hero-art a { color: #374151; }

/* Logos marquee */
.logos .marquee { overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: #ffffff; }
.marquee-track { display: inline-flex; gap: 36px; padding: 16px 18px; white-space: nowrap; min-width: 200%; animation: marquee 32s linear infinite; }
.logo { color: #6b7280; letter-spacing: .18em; font-weight: 700; font-size: 13px; opacity: .9; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Features */
.features header { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.features .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.features .feature {
    grid-column: span 3; padding: 20px; background: #ffffff; border: 1px solid var(--border); border-radius: 16px;
    transition: transform var(--speed-2) var(--easing), box-shadow var(--speed-2) var(--easing);
}
.features .feature:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(2,8,23,0.06); }
.features .feature .icon { font-size: 22px; margin-bottom: 8px; }

/* How it works */
.how header { text-align: center; margin-bottom: 22px; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; counter-reset: step; }
.step {
    grid-column: span 3; display: flex; gap: 14px; padding: 16px 18px; border-radius: 14px;
    border: 1px solid var(--border); background: #ffffff;
}
.step-num { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #ffffff; font-weight: 800; background: #111827; }

/* Channels grid */
.channels-grid .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.channel {
    grid-column: span 4; display:flex; align-items:center; justify-content:center; min-height: 92px; font-weight: 600; letter-spacing: .2px;
    background: #ffffff; border: 1px solid var(--border); border-radius: 14px;
    transition: transform var(--speed-2) var(--easing), box-shadow var(--speed-2) var(--easing);
}
.channel:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(2,8,23,0.06); }

/* Use cases */
.usecases .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.usecases .use {
    grid-column: span 3; padding: 22px; background: #ffffff; border: 1px solid var(--border); border-radius: 16px;
    transition: transform var(--speed-2) var(--easing), box-shadow var(--speed-2) var(--easing);
}
.usecases .use:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(2,8,23,0.06); }

/* CTA */
.cta .cta-inner {
    text-align: center; padding: clamp(24px, 6vw, 48px); border-radius: 18px; position: relative; overflow: hidden;
    background: #ffffff; border: 1px solid var(--border);
}
.cta .cta-inner::after { content: none; }

/* Responsive */
@media (max-width: 1199px) {
    .features .feature, .step, .channel, .usecases .use { grid-column: span 6; }
}
@media (max-width: 699px) {
    .features .feature, .step, .channel, .usecases .use { grid-column: span 12; }
    .hero-art img { height: 240px; }
}
/* Ingest section */
.ingest header { text-align: center; max-width: 820px; margin: 0 auto 24px; }
.ingest .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.ingest .ingest-card {
    grid-column: span 4;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow-elev);
    transition: transform var(--speed-2) var(--easing), box-shadow var(--speed-2) var(--easing);
}
.ingest .ingest-card .icon { font-size: 22px; margin-bottom: 8px; }
.ingest .ingest-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(2,8,23,0.06); }
.ingest .note { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }

@media (max-width: 1199px) {
    .ingest .ingest-card { grid-column: span 6; }
}
@media (max-width: 699px) {
    .ingest .ingest-card { grid-column: span 12; }
}
/* Powered by */
.powered .powered-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-elev);
    position: relative;
}
.powered .powered-inner .chip { background: #f3f4f6; }
.powered .powered-inner strong { font-weight: 800; letter-spacing: .2px; }
.powered { display: grid; place-items: center; padding-top: 0; }
/* Logo image strip styling */
.logos .marquee { overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: #ffffff; }
.marquee-track { display: inline-flex; align-items: center; gap: 44px; padding: 18px 22px; white-space: nowrap; min-width: 200%; animation: marquee 32s linear infinite; }
.logoimg { height: 28px; width: auto; opacity: .85; filter: grayscale(100%); transition: opacity var(--speed-2) var(--easing), filter var(--speed-2) var(--easing), transform var(--speed-2) var(--easing); }
.logoimg:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-1px); }

@media (max-width: 699px) {
    .logoimg { height: 22px; }
}/* Offer stack under hero */
.offer-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 14px;
    list-style: none;
}
.offer-stack li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: #111827;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(2,8,23,0.04);
    transition: transform var(--speed-2) var(--easing), box-shadow var(--speed-2) var(--easing);
}
.offer-stack li:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(2,8,23,0.08); }
/* Inline powered label in hero CTAs */
.hero-ctas .powered-inline {
    color: #6b7280;
    font-weight: 600;
    letter-spacing: .2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.hero-ctas .powered-inline::before {
    content: "•";
    color: #c5cbd6;
}
@media (max-width: 480px) {
    .hero-ctas .powered-inline { font-size: 14px; }
}
/* CTA spacing polish */
section.cta {
    padding-top: clamp(72px, 8vw, 120px);
    padding-bottom: clamp(88px, 10vw, 140px);
}
/* Comparison section */
.comparison header { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.comparison-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.comparison-grid .col { grid-column: span 6; }
.comparison-grid .col h3 { margin-bottom: 10px; }
.comparison-grid ul { display: grid; gap: 10px; padding-left: 18px; }
.comparison-grid .card.good { border-color: rgba(16,185,129,.25); }
.comparison-grid .good li::marker { color: #10b981; }
.comparison-grid .bad li::marker { color: #ef4444; }

/* Stats */
.stats header { text-align: center; max-width: 820px; margin: 0 auto 22px; }
.stats-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.stat { grid-column: span 3; display: grid; gap: 6px; text-align: center; padding: 22px; }
.stat strong { font-size: 24px; letter-spacing: .2px; }
.stat span { color: #596072; }

/* Testimonial */
.testimonial .testimonial-inner { padding: clamp(24px, 5vw, 36px); display: grid; gap: 18px; }
.testimonial blockquote { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.4; color: #0b0f19; }
.testimonial .person { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #f3f4f6; }
.testimonial .meta { display: grid; line-height: 1.2; }
.testimonial .meta span { color: #6b7280; }

/* Trust */
.trust header { text-align: center; margin-bottom: 22px; }
.trust-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.trust-item { grid-column: span 4; display: grid; gap: 8px; }
.trust-item .icon { font-size: 22px; }

/* Pricing */
.pricing header { text-align: center; margin-bottom: 22px; }
.pricing-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; align-items: stretch; }
.plan { grid-column: span 4; display: grid; gap: 14px; position: relative; }
.plan .plan-head { display: flex; align-items: baseline; justify-content: space-between; }
.plan .price { font-weight: 800; font-size: 28px; }
.plan .price span { font-size: 14px; color: #6b7280; font-weight: 600; margin-left: 4px; }
.plan .features { display: grid; gap: 8px; padding-left: 18px; color: #2b3343; }
.plan.featured { border-color: rgba(2,8,23,0.16); box-shadow: 0 16px 44px rgba(2,8,23,0.10); transform: translateY(-2px); }
.plan .badge {
    position: absolute; top: -12px; right: 18px;
    padding: 6px 10px; border-radius: 999px; background: #111827; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .2px;
}

/* Responsive additions */
@media (max-width: 1199px) {
    .comparison-grid .col, .stat, .plan, .trust-item { grid-column: span 6; }
}
@media (max-width: 699px) {
    .comparison-grid .col, .stat, .plan, .trust-item { grid-column: span 12; }
}
/* Increase spacing above CTA button in the final call-to-action */
.cta .cta-inner > .btn {
    margin-top: clamp(16px, 2.6vw, 26px);
}
