/* ============================================
   Expertise By Me
   Light theme, black/white, geometric accents
   ============================================ */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-dark: #0a0a0a;
    --bg-card: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #4a4a4a;
    --text-muted: #636363;
    --text-on-dark: #f5f5f5;
    --text-on-dark-muted: #999999;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.nav-cta {
    background: var(--bg-dark) !important;
    color: var(--text-on-dark) !important;
    border-radius: var(--radius-sm) !important;
    padding: 8px 18px !important;
}

.nav-cta:hover {
    background: #222 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-mesh {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 0, 0, 0.02) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 0, 0, 0.015) 0%, transparent 60%);
    animation: meshShift 25s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshShift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(3%, -2%) scale(1.05); }
    100% { transform: translate(-2%, 3%) scale(1); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-logo-wrapper {
    flex-shrink: 0;
}

.hero-logo {
    width: 220px;
    height: auto;
}

.hero-text {
    flex: 1;
}

.hero-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-headline span {
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-meta-item svg {
    color: var(--text-primary);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero line reveal */
.hero-line {
    clip-path: inset(0 100% 0 0);
    animation: clipReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.25s; }
.hero-line:nth-child(3) { animation-delay: 0.4s; }

.hero-text .hero-tagline { animation-delay: 0.1s; }
.hero-text .hero-headline .hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-text .hero-headline .hero-line:nth-child(2) { animation-delay: 0.35s; }
.hero-text .hero-sub { animation-delay: 0.5s; }
.hero-text .hero-meta { animation-delay: 0.65s; }
.hero-text .hero-cta { animation-delay: 0.8s; }

.reveal-hero {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0s;
}

@keyframes clipReveal {
    to { clip-path: inset(0 0 0 0); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.btn-primary:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- SECTIONS ---- */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-dark .section-title {
    color: var(--text-on-dark);
}

.section-dark .section-title::after {
    background: var(--text-on-dark);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 560px;
}

/* ---- CARDS (shared) ---- */
.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 0, 0, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.card:hover::before {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

/* ---- SERVICES ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- STATS ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 32px 16px;
}

.stat-number {
    display: inline;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-on-dark);
    font-family: var(--font-mono);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-on-dark);
    font-family: var(--font-mono);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-on-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

/* ---- SKILLS ---- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.skill-group-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.skill-tag-expert {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.skill-tag-advanced {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

.skill-tag-intermediate {
    background: transparent;
    border-color: var(--border);
    color: var(--text-muted);
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--text-primary), var(--border));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    z-index: 1;
}

.timeline-item:first-child .timeline-marker {
    background: var(--text-primary);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.timeline-role {
    font-size: 1.1rem;
    font-weight: 700;
}

.timeline-company {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.timeline-details {
    list-style: none;
    margin-bottom: 16px;
}

.timeline-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-details li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--text-muted);
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.timeline-tags span {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: -8px;
    left: -4px;
    color: var(--text-primary);
}

.testimonial-quote p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- ABOUT / FONDATEUR ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary) !important;
    font-weight: 500;
    line-height: 1.6;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 64px;
}

.about-credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.about-credential svg {
    flex-shrink: 0;
    color: var(--text-primary);
}

.about-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-top: 8px;
}

.about-linkedin:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--border-hover);
}

/* ---- CONTACT ---- */
.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 40px;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    text-decoration: none;
    color: var(--text-on-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-card svg { color: var(--text-on-dark); }
.contact-card span { font-weight: 600; font-size: 0.9rem; }
.contact-card p { font-size: 0.8rem; color: var(--text-on-dark-muted); }

/* ---- FOOTER ---- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
    height: 1px;
    background: var(--text-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-divider.visible {
    transform: scaleX(1);
}

/* ---- SKIP LINK ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 8px;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo { width: 160px; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-meta { justify-content: center; }
    .hero-cta { justify-content: center; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-aside { padding-top: 0; }

    .services-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline { padding-left: 32px; }
    .timeline-marker { left: -32px; }
    .timeline::before { left: 0; }

    .timeline-header {
        flex-direction: column;
    }

    .section { padding: 60px 0; }
    .section-title { margin-bottom: 16px; }
    .section-lead { margin-bottom: 32px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-logo { width: 130px; }
    .hero-headline { font-size: 1.8rem; }
    .stat-number { font-size: 2rem; }
    .stat-card { padding: 20px 12px; }
}

/* ---- PRINT ---- */
@media print {
    * { color: #000 !important; background: #fff !important; box-shadow: none !important; border-color: #ccc !important; }
    .nav, .hero-mesh, .hero-scroll, .btn { display: none !important; }
    .hero { min-height: auto; padding: 40px 0; }
    .section { padding: 30px 0; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .hero-line { clip-path: none !important; animation: none !important; }
    body { font-size: 11pt; line-height: 1.5; }
    .hero-headline { font-size: 24pt; }
    .timeline-content { break-inside: avoid; }
    .testimonial-card { break-inside: avoid; }
    a { text-decoration: underline; }
    a::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb span[aria-current] {
    color: var(--text-primary);
    font-weight: 500;
}

/* ---- LANDING PAGES ---- */
.landing-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.landing-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.landing-content strong {
    color: var(--text-primary);
}

.landing-cta {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.landing-cta h2 {
    margin-top: 0;
}

/* ---- FOOTER LINKS ---- */
.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

/* ---- SELECTION ---- */
::selection {
    background: var(--bg-dark);
    color: var(--bg-primary);
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-line { clip-path: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}
