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

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

:root {
    --purple: #9333ea;
    --purple-light: #c084fc;
    --purple-pale: #faf5ff;
    --pink: #ec4899;
    --bg: #fafafa;
    --white: #ffffff;
    --dark: #18181b;
    --surface: #ffffff;
    --border: #f4e6ff;
    --text: #27272a;
    --text-light: #71717a;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

/* HEADER */
.header {
    background: var(--dark);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { font-size: 1.1em; font-weight: 800; color: #fff; }
.logo em { color: var(--purple-light); font-style: normal; }
.hdr-right { display: flex; gap: 10px; }
.hdr-pill {
    background: rgba(147,51,234,0.15);
    border: 1px solid rgba(147,51,234,0.3);
    color: var(--purple-light);
    font-size: 0.72em;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* HERO — STEPS PREVIEW */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2d0a5e 50%, #4c1d95 100%);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%);
}
.hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 2.7em;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero h1 span { color: var(--purple-light); }
.hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1.1em;
    max-width: 500px;
    margin: 0 auto 36px;
}
.step-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.sp-item { display: flex; align-items: center; }
.sp-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(147,51,234,0.3);
    border: 2px solid rgba(196,132,252,0.5);
    color: #fff;
    font-weight: 800;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-arrow {
    color: rgba(196,132,252,0.4);
    font-size: 1.2em;
    margin: 0 8px;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 1.9em; }
    .hero { padding: 56px 20px; }
    .step-preview { gap: 8px; }
    .sp-arrow { display: none; }
}

/* MAIN */
.main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* ANCHOR CARD */
.anchor-card {
    background: var(--purple-pale);
    border: 1px solid #e9d5ff;
    border-left: 5px solid var(--purple);
    border-radius: 0 14px 14px 0;
    padding: 30px 34px;
    margin-bottom: 56px;
}
.ac-tag {
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 10px;
}
.anchor-card p {
    font-size: 1.1em;
    color: var(--text);
    line-height: 1.85;
}

/* BIG STEPS */
.big-steps { margin-bottom: 48px; }
.bs-title {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 6px;
}
.bs-sub {
    color: var(--text-light);
    margin-bottom: 36px;
}
.step-card {
    background: var(--white);
    border: 1px solid #f3e8ff;
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 16px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(147,51,234,0.06);
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--purple), var(--pink));
}
.sc-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.sc-body { flex: 1; }
.sc-title {
    font-size: 1.25em;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.sc-desc {
    font-size: 1.02em;
    color: var(--text-light);
    line-height: 1.75;
    text-align: justify;
}
.sc-tip {
    background: var(--purple-pale);
    border: 1px solid #e9d5ff;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 14px;
    font-size: 0.88em;
    color: var(--purple);
    font-weight: 600;
}
.sc-tip::before { content: '💡 '; }
@media (max-width: 640px) {
    .step-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px 22px;
    }
}

/* CONTENT BLOCK */
.content-block {
    background: var(--white);
    border: 1px solid #f3e8ff;
    border-radius: 14px;
    padding: 40px;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(147,51,234,0.04);
}
.content-block h2 {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}
.content-block h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--purple);
    margin: 20px 0 8px;
}
.content-block p {
    font-size: 1.02em;
    color: var(--text-light);
    margin-bottom: 14px;
    text-align: justify;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .content-block { padding: 24px; }
}

/* APP GRID */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 22px 0;
}
.ag-card {
    background: var(--purple-pale);
    border: 1px solid #e9d5ff;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
}
.ag-icon { font-size: 2em; margin-bottom: 8px; }
.ag-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9em;
    margin-bottom: 4px;
}
.ag-compat { font-size: 0.75em; color: var(--text-light); }

/* LINK */
a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(147,51,234,0.25);
}
a:hover { border-color: var(--purple); }

/* FOOTER */
footer {
    background: var(--dark);
    padding: 32px 24px;
    text-align: center;
}
footer p { color: #3f3f46; font-size: 0.9em; }
