/* ──────────────────────────────────────────────
   Stage AI — Landing Page Styles
   ────────────────────────────────────────────── */

:root {
    --bg:        #08080c;
    --bg-card:   #111118;
    --bg-card-2: #181822;
    --surface:   #1e1e2a;
    --border:    rgba(255, 255, 255, 0.06);
    --text:      #f0f0f5;
    --text-dim:  #8888a0;
    --purple:    #6c5ce7;
    --purple-l:  #a29bfe;
    --cyan:      #00cec9;
    --green:     #00b894;
    --orange:    #e17055;
    --pink:      #fd79a8;
    --yellow:    #fbbf24;
    --radius:    16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --max-w:     1200px;
    --nav-h:     72px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-l) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
.btn__icon { width: 20px; height: 20px; }
.btn--sm   { font-size: 14px; padding: 10px 22px; }
.btn--lg   { font-size: 16px; padding: 16px 36px; }
.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-l));
    color: #fff;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.35);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.5);
}

.btn--ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn--outline:hover {
    border-color: var(--purple);
    color: var(--purple-l);
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: #08080c;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(255,255,255,0.15);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(255,255,255,0.25);
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-l);
    margin-bottom: 16px;
    background: rgba(108,92,231,0.1);
    padding: 6px 16px;
    border-radius: 50px;
}
.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav--scrolled {
    background: rgba(8, 8, 12, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}
.nav__logo-icon { width: 34px; height: 34px; }
.nav__logo-icon svg { width: 100%; height: 100%; }

.nav__links {
    display: flex;
    gap: 36px;
}
.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta { }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav__mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}
.nav__mobile a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dim);
}
.nav__mobile .btn {
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .nav__mobile.active { display: flex; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 40px) 24px 80px;
    overflow: hidden;
}
.hero__bg-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108,92,231,0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 6s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
    from { opacity: 0.6; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.15); }
}

.hero__content {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-l);
    background: rgba(108,92,231,0.1);
    border: 1px solid rgba(108,92,231,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.hero__title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dim);
}
.hero__stars {
    display: flex;
    gap: 2px;
}
.hero__stars svg { width: 18px; height: 18px; }

/* Phone Mockup */
.hero__phone {
    display: flex;
    justify-content: center;
}
.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 30px 80px -20px rgba(108,92,231,0.35),
        0 60px 120px -40px rgba(0,0,0,0.6),
        inset 0 0 40px rgba(108,92,231,0.05);
    overflow: hidden;
    animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.phone-mockup__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #08080c;
    border-radius: 20px;
    z-index: 10;
}

.phone-mockup__screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Demo screen inside phone */
.phone-screen-demo {
    padding: 52px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.phone-screen-demo__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.phone-screen-demo__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-l));
}
.phone-screen-demo__name {
    font-size: 14px;
    font-weight: 700;
}
.phone-screen-demo__sub {
    font-size: 11px;
    color: var(--text-dim);
}

.phone-screen-demo__card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex: 1;
}
.phone-screen-demo__card--1 { opacity: 0.7; }
.phone-screen-demo__card--2 {
    box-shadow: 0 4px 20px rgba(108,92,231,0.3);
}
.phone-screen-demo__label {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.phone-screen-demo__label--ai {
    background: rgba(108,92,231,0.6);
}
.phone-screen-demo__img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
}
.phone-screen-demo__actions {
    display: flex;
    gap: 8px;
}
.phone-screen-demo__action-btn {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: var(--radius-xs);
    background: var(--surface);
    color: var(--text-dim);
}

@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__proof { justify-content: center; }
    .hero__phone { order: -1; }
    .phone-mockup { width: 240px; height: 500px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOGOS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.logos {
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.logos__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 28px;
    font-weight: 500;
}
.logos__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 52px;
    max-width: 900px;
    margin: 0 auto;
}
.logos__item {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.02em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features {
    padding: 120px 0;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover {
    border-color: rgba(108,92,231,0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -20px rgba(108,92,231,0.15);
}
.feature-card--lg {
    grid-column: span 2;
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card__icon svg {
    width: 24px;
    height: 24px;
}
.feature-card__icon--purple { background: rgba(108,92,231,0.15); color: var(--purple-l); }
.feature-card__icon--blue   { background: rgba(99,179,237,0.12); color: #63b3ed; }
.feature-card__icon--green  { background: rgba(0,184,148,0.12);  color: var(--green); }
.feature-card__icon--orange { background: rgba(225,112,85,0.12); color: var(--orange); }
.feature-card__icon--pink   { background: rgba(253,121,168,0.12); color: var(--pink); }
.feature-card__icon--cyan   { background: rgba(0,206,201,0.12);  color: var(--cyan); }

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.feature-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr;
    }
    .feature-card--lg { grid-column: span 1; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.step__number {
    font-size: 14px;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(108,92,231,0.15);
    color: var(--purple-l);
    margin-bottom: 24px;
}
.step__phone {
    width: 180px;
    height: 320px;
    margin: 0 auto 28px;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,0.08);
    overflow: hidden;
    background: #111118;
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
}
.step__phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step__phone-icon svg {
    width: 48px;
    height: 48px;
}
.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.step p {
    font-size: 15px;
    color: var(--text-dim);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; gap: 60px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHOWCASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.showcase {
    padding: 120px 0;
}
.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.showcase__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}
.showcase__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px -20px rgba(108,92,231,0.15);
}
.showcase__before,
.showcase__after {
    position: relative;
    height: 160px;
}
.showcase__img {
    width: 100%;
    height: 100%;
}
.showcase__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.showcase__tag--ai {
    background: rgba(108,92,231,0.6);
}
.showcase__caption {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .showcase__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing {
    padding: 120px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--purple);
    background: linear-gradient(180deg, rgba(108,92,231,0.08) 0%, var(--bg-card-2) 100%);
    box-shadow: 0 0 60px -20px rgba(108,92,231,0.25);
}
.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    background: linear-gradient(135deg, var(--purple), var(--purple-l));
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card__header { margin-bottom: 24px; }
.pricing-card__header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-card__desc {
    font-size: 14px;
    color: var(--text-dim);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
}
.pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.pricing-card__period {
    font-size: 15px;
    color: var(--text-dim);
}

.pricing-card__features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-card__features li {
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card__features li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,184,148,0.15);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2300b894' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 11.5l-3-3 1-1 2 2 5-5 1 1z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing__cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials {
    padding: 120px 0;
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
}
.testimonial-card__stars svg { width: 16px; height: 16px; }

.testimonial-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}
.testimonial-card__author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.testimonial-card__author span {
    font-size: 12px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DOWNLOAD CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.download {
    padding: 120px 0;
}
.download__inner {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(108,92,231,0.12) 0%, rgba(0,206,201,0.06) 100%);
    border: 1px solid rgba(108,92,231,0.2);
    overflow: hidden;
}
.download__glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(108,92,231,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.download__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
}
.download__subtitle {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 36px;
    position: relative;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer__brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text);
}
.footer__col a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 12px;
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.footer__bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .footer__top { grid-template-columns: 1fr; gap: 40px; }
    .footer__links { grid-template-columns: repeat(2, 1fr); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── STAGGER ── */
.features__grid .fade-up:nth-child(1) { transition-delay: 0s; }
.features__grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.features__grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.features__grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.features__grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.features__grid .fade-up:nth-child(6) { transition-delay: 0.4s; }
.features__grid .fade-up:nth-child(7) { transition-delay: 0.48s; }
.features__grid .fade-up:nth-child(8) { transition-delay: 0.56s; }

.steps .fade-up:nth-child(1) { transition-delay: 0s; }
.steps .fade-up:nth-child(2) { transition-delay: 0.15s; }
.steps .fade-up:nth-child(3) { transition-delay: 0.3s; }

.testimonials__grid .fade-up:nth-child(1) { transition-delay: 0s; }
.testimonials__grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

.pricing__cards .fade-up:nth-child(1) { transition-delay: 0s; }
.pricing__cards .fade-up:nth-child(2) { transition-delay: 0.1s; }
.pricing__cards .fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* ── SELECTION ── */
::selection {
    background: rgba(108, 92, 231, 0.3);
    color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Blog hero */
.blog-hero {
    padding: calc(var(--nav-h) + 60px) 0 40px;
}

/* Blog roll grid */
.blog-roll { padding: 0 0 120px; }

.blog-roll__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-roll__empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-dim);
    font-size: 16px;
}

/* Blog card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px -20px rgba(108,92,231,0.15);
}

.blog-card__img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.blog-card__img--placeholder {
    background: linear-gradient(135deg, var(--surface), var(--bg-card-2));
}

.blog-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.blog-card__tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(108,92,231,0.12);
    color: var(--purple-l);
}

.blog-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--text);
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__date {
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.6;
}

@media (max-width: 900px) {
    .blog-roll__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-roll__grid { grid-template-columns: 1fr; }
}

/* Blog post page */
.blog-post-page {
    padding: calc(var(--nav-h) + 60px) 0 120px;
}
.blog-post-page .section-container {
    max-width: 780px;
}

.blog-post-page__back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 28px;
    transition: color 0.2s;
}
.blog-post-page__back:hover { color: var(--purple-l); }

.blog-post-page__title {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.blog-post-page__date {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    opacity: 0.6;
    margin-bottom: 40px;
}

.blog-post-page__hero-img {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}
.blog-post-page__hero-img img {
    width: 100%;
    display: block;
}

.blog-post-page__footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
