/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #09090b;
    color: #e4e4e7;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
input, select, button { font-family: inherit; }

/* ===== Utilities ===== */
.gradient-text {
    background: linear-gradient(135deg, #818cf8, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.section-subtitle {
    text-align: center;
    color: #a1a1aa;
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

/* ===== Nav ===== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(16px);
    background: rgba(9,9,11,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
#main-nav.scrolled {
    background: rgba(9,9,11,0.92);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.15rem;
}
.logo-accent { color: #818cf8; }
.logo-dot { color: #06b6d4; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #a1a1aa;
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}

/* ===== Hero ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}
.hero-orb-1 { width: 600px; height: 600px; background: #6366f1; top: -150px; left: -150px; }
.hero-orb-2 { width: 500px; height: 500px; background: #06b6d4; bottom: -100px; right: -100px; }
.hero-orb-3 { width: 350px; height: 350px; background: #8b5cf6; top: 35%; left: 50%; transform: translateX(-50%); }
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}
.badge-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
#hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-subtitle strong { color: #818cf8; }
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.stat-label { font-size: 0.8rem; color: #71717a; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.4);
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #a1a1aa;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.2s;
}
.hero-cta-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #52525b;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-dot {
    width: 3px;
    height: 8px;
    background: #818cf8;
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===== Solutions ===== */
#solutions {
    background: rgba(255,255,255,0.01);
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.solution-card {
    position: relative;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(99,102,241,0.08);
}
.solution-card-featured {
    border-color: rgba(99,102,241,0.2);
    background: rgba(99,102,241,0.04);
}
.solution-card-featured:hover {
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 50px rgba(99,102,241,0.12);
}
.solution-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s;
}
.solution-card:hover .solution-glow { opacity: 0.3; }
.solution-glow-indigo { background: #6366f1; }
.solution-glow-cyan { background: #06b6d4; }
.solution-glow-purple { background: #8b5cf6; }
.solution-glow-emerald { background: #10b981; }
.solution-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.7rem;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #86efac;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}
.solution-badge-soon {
    background: rgba(99,102,241,0.12);
    border-color: rgba(99,102,241,0.25);
    color: #a5b4fc;
}
.solution-icon-wrap {
    margin-bottom: 1.25rem;
}
.solution-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.solution-desc {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}
.solution-stats-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.solution-stat { text-align: center; flex: 1; }
.solution-stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
}
.solution-stat-label {
    font-size: 0.65rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.solution-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.solution-feature-tag {
    padding: 0.3rem 0.7rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #a1a1aa;
}
.solution-cta-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.solution-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #818cf8;
    transition: color 0.2s;
}
.solution-cta-row svg { color: #818cf8; transition: transform 0.2s, color 0.2s; }
.solution-card:hover .solution-cta-row svg { transform: translateX(3px); }
.solution-link-muted { color: #71717a; }
.solution-card:hover .solution-link-muted { color: #a1a1aa; }

/* ===== Why CloudIntel / Differentiators ===== */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.diff-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.3s, border-color 0.3s;
}
.diff-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99,102,241,0.3);
}
.diff-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.diff-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.85rem; color: #a1a1aa; }

/* ===== Social Proof ===== */
#social-proof {
    background: rgba(255,255,255,0.01);
}
.tweets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.tweet-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}
.tweet-card:hover {
    transform: translateY(-3px);
    border-color: rgba(29,155,240,0.3);
}
.tweet-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.tweet-avatar { width: 44px; height: 44px; border-radius: 50%; }
.tweet-name { display: flex; align-items: center; gap: 0.35rem; font-weight: 700; font-size: 0.95rem; color: #fff; }
.tweet-handle { display: block; font-size: 0.8rem; color: #71717a; }
.tweet-text { font-size: 0.9rem; line-height: 1.5; color: #d4d4d8; margin-bottom: 1rem; }
.tweet-text strong { color: #22c55e; }
.tweet-mention { color: #1d9bf0; }
.tweet-stats {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: #71717a;
}

/* ===== Contact / CTA ===== */
#contact {
    padding: 6rem 1.5rem;
}
.contact-container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    overflow: hidden;
}
.contact-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
    pointer-events: none;
}
.contact-content { position: relative; z-index: 1; }
.contact-badge {
    display: inline-block;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 1rem;
}
.contact-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: #fff;
}
.contact-content > p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: flex; gap: 0.75rem; }
.form-row input, .form-row select {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus {
    border-color: #6366f1;
}
.form-row select { color: #71717a; cursor: pointer; }
.form-row select option { background: #18181b; color: #fff; }
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.4);
}
.form-note { font-size: 0.75rem; color: #52525b; margin-top: 0.25rem; }
.success-message { padding: 2rem 0; }
.success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.success-message h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.success-message p { color: #a1a1aa; }

/* ===== Footer ===== */
#footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 1.5rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand { margin-bottom: 2rem; }
.footer-brand .logo { margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: #52525b; }
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #71717a;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy { font-size: 0.75rem; color: #3f3f46; }
.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-socials a {
    color: #52525b;
    transition: color 0.2s;
}
.footer-socials a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .solutions-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .hero-stats { gap: 1rem; }
    .hero-cta-group { flex-direction: column; }
    .differentiators-grid { grid-template-columns: 1fr; }
    .tweets-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { flex-direction: column; }
    .contact-container { padding: 2rem 1.5rem; }
    .scroll-indicator { display: none; }
}
