* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: #03060d;
}

body {
    min-height: 100vh;
    background: #03060d;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.container {
    position: absolute;
    top: 14vh;
    left: 6vw;
    z-index: 1;
    text-align: left;
}

.logo {
    display: inline-block;
    font-size: clamp(48px, 12vw, 96px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 200;
    letter-spacing: 2px;
    color: #a1a1aa;
    text-transform: lowercase;
    margin-top: -10px;
    margin-bottom: 48px;
}

.tagline {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #a1a1aa;
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-desc {
    max-width: 560px;
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
    margin-bottom: 40px;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border: 1.5px solid #22c55e;
    border-radius: 999px;
    background: transparent;
    color: #22c55e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.learn-btn:hover {
    color: #ffffff;
    border-color: #4ade80;
    background: rgba(34, 197, 94, 0.12);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.25);
}

.learn-btn-arrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0;
    animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}

.glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.08;
    pointer-events: none;
}

.glow-purple {
    background: #9333ea;
    top: -200px;
    left: -100px;
}

.glow-pink {
    background: #ec4899;
    bottom: -200px;
    right: -100px;
}

/* ------- WHY section ------- */

.why {
    position: relative;
    padding: 120px 6vw 160px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 14, 0.6) 100%);
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a1a1aa;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 24px;
}

.section-lede {
    max-width: 680px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.65;
    color: #a1a1aa;
    font-weight: 200;
    margin-bottom: 72px;
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 96px;
}

@media (max-width: 780px) {
    .compare { grid-template-columns: 1fr; gap: 24px; }
    .why { padding: 80px 6vw 100px; }
}

.compare-card {
    padding: 32px;
    border: 1px solid #27272a;
    border-radius: 18px;
    background: rgba(20, 20, 23, 0.6);
    backdrop-filter: blur(6px);
}

.illo-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 20px 0;
    background: transparent;
    border: none;
}

.illo { width: 100%; height: auto; display: block; }

.illo-wide { padding: 24px; }

.compare-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #27272a;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-list li {
    font-size: 14px;
    line-height: 1.65;
    color: #d4d4d8;
    font-weight: 200;
    padding: 8px 0;
    padding-left: 18px;
    position: relative;
}

.compare-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.compare-list em {
    color: #ffffff;
    font-style: normal;
    font-weight: 400;
}

.closing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.closing .illo-wrap {
    margin-bottom: 32px;
}

.closing-text {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    color: #d4d4d8;
    font-weight: 200;
}

.closing-text strong {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
