@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --blue: #3b82f6;
    --violet: #8b5cf6;
    --pink: #ec4899;
    --charcoal: #080b15;
    --text: #e4e7f5;
    --muted: #a5b4fc;
    --card: #101528;
    --border: rgba(255, 255, 255, 0.08);
    font-size: 62.5%;
}

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

body {
    font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.18), transparent 45%),
        #05060f;
    color: var(--text);
    line-height: 1.6;
    font-size: 1.6rem;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

.hero {
    position: relative;
    padding: 3.2rem clamp(1.6rem, 5vw, 8rem) 6.4rem;
    overflow: hidden;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.55), rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.4));
    filter: blur(160px);
    opacity: 0.55;
    z-index: 0;
}

.hero__nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    margin-bottom: 4rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand__icon {
    width: 4.4rem;
    height: 4.4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 1.2rem 2.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    color: var(--text);
}

.btn--primary {
    background: linear-gradient(135deg, var(--blue), var(--pink));
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.35);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.25);
    background: transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero__content {
    position: relative;
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    z-index: 1;
}

.hero__copy h1 {
    font-size: clamp(3.6rem, 4vw, 5.6rem);
    margin: 1rem 0 1.6rem;
}

.eyebrow {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: var(--muted);
}

.hero__copy p {
    max-width: 52ch;
    color: rgba(228, 231, 245, 0.9);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 2.8rem 0 1.6rem;
}

.hero__stats {
    list-style: none;
    display: flex;
    gap: 2.4rem;
}

.stat__value {
    font-size: 3.2rem;
    font-weight: 600;
}

.stat__label {
    display: block;
    color: var(--muted);
}

.hero__mock {
    display: flex;
    justify-content: center;
}

.mock-card {
    width: min(360px, 100%);
    background: rgba(8, 11, 21, 0.8);
    border-radius: 2.4rem;
    padding: 3.2rem;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(8, 11, 21, 0.55);
}

.mock-card__title {
    font-size: 2rem;
    margin: 1.6rem 0;
}

.mock-card ul {
    list-style: disc;
    padding-left: 1.6rem;
    color: rgba(228, 231, 245, 0.85);
}

main {
    padding: 0 clamp(1.6rem, 5vw, 8rem) 8rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 4rem 0 6rem;
}

.pillars article {
    padding: 2.4rem;
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(8, 11, 21, 0.6);
}

.pillars h3 {
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.chips span {
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.15);
}

.feature-grid__card {
    background: var(--card);
    border-radius: 2rem;
    border: 1px solid var(--border);
    padding: 2.8rem;
    box-shadow: 0 35px 70px rgba(5, 6, 15, 0.6);
}

.card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-weight: 600;
}

.chip {
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    font-size: 1.3rem;
}

.chip--pink {
    background: rgba(236, 72, 153, 0.25);
    color: var(--pink);
}

.task + .task {
    margin-top: 1.6rem;
}

.task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.02);
}

.task__title {
    font-weight: 600;
}

.task__meta {
    color: rgba(228, 231, 245, 0.6);
    font-size: 1.4rem;
}

.task__status {
    font-size: 1.3rem;
    color: rgba(228, 231, 245, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
}

.quote {
    margin: 6rem auto 2rem;
    max-width: 720px;
    text-align: center;
}

.quote p {
    font-size: 2.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.quote__meta {
    margin-top: 2.4rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    align-items: center;
    color: rgba(228, 231, 245, 0.7);
}

.quote__meta img {
    width: 3.6rem;
    height: 3.6rem;
}

.cta {
    margin: 8rem clamp(1.6rem, 5vw, 8rem);
    padding: 3.6rem;
    border-radius: 2.4rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.65), rgba(236, 72, 153, 0.7));
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

footer {
    padding: 2.4rem clamp(1.6rem, 5vw, 8rem) 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    border-top: 1px solid var(--border);
    color: rgba(228, 231, 245, 0.6);
}

@media (max-width: 720px) {
    .hero__nav {
        flex-direction: column;
        gap: 1.6rem;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
    }
}
