/*
    Gariano Design - Homepage 2026
    File: style.css
    Descrizione: stile grafico della homepage, layout responsive, effetto glass, dashboard e animazioni.
*/

:root {
    --bg-main: #05070d;
    --bg-card: rgba(255, 255, 255, 0.075);
    --bg-card-strong: rgba(255, 255, 255, 0.12);
    --text-main: #f5f7fb;
    --text-muted: #aab3c5;
    --text-soft: #788296;
    --accent: #66ffd9;
    --accent-2: #8ea7ff;
    --border-light: rgba(255, 255, 255, 0.16);
    --shadow-main: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(102, 255, 217, 0.16), transparent 34%),
        radial-gradient(circle at top right, rgba(142, 167, 255, 0.16), transparent 32%),
        var(--bg-main);
    color: var(--text-main);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

/* Canvas animato sullo sfondo */
#networkCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.82;
    pointer-events: none;
}

.background-glow {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(5, 7, 13, 0.04), rgba(5, 7, 13, 0.82) 82%),
        radial-gradient(circle at center, transparent 0%, rgba(5, 7, 13, 0.35) 70%);
}

.page-wrapper {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 0 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(18px);
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 18px var(--accent);
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.45);
        opacity: 1;
    }
}

h1 {
    margin: 0;
    max-width: 980px;
    line-height: 0.88;
    letter-spacing: -0.08em;
}

.small-title {
    display: block;
    font-size: clamp(58px, 11vw, 154px);
    font-weight: 850;
}

.since {
    display: block;
    margin-top: 16px;
    font-size: clamp(34px, 7vw, 92px);
    font-weight: 250;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
    letter-spacing: -0.06em;
}

.hero-lead {
    max-width: 820px;
    margin: 36px 0 0;
    font-size: clamp(24px, 3.2vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #061015;
    box-shadow: 0 18px 50px rgba(102, 255, 217, 0.22);
}

.secondary-button {
    color: var(--text-main);
    border: 1px solid var(--border-light);
    background-color: rgba(255, 255, 255, 0.06);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
}

.system-section,
.services-section,
.skills-section,
.contact-section {
    padding: 70px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.section-heading h2,
.contact-card h2 {
    margin: 0;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.section-heading p:not(.eyebrow),
.contact-card p:not(.eyebrow) {
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
}

.glass-card,
.service-card,
.contact-card {
    border: 1px solid var(--border-light);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
    backdrop-filter: blur(24px);
    border-radius: 32px;
    box-shadow: var(--shadow-main);
}

.glass-card {
    padding: 28px;
}

.glass-card h3 {
    margin: 0 0 24px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.pipeline {
    display: grid;
    grid-template-columns: minmax(125px, 1fr) 46px minmax(125px, 1fr) 46px minmax(125px, 1fr) 46px minmax(125px, 1fr);
    align-items: center;
    gap: 12px;
}

.pipeline-step {
    min-height: 155px;
    padding: 20px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.pipeline-step::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 80px;
    background: radial-gradient(circle, rgba(102, 255, 217, 0.32), transparent 68%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pipeline-step.active::after {
    opacity: 1;
    animation: glowMove 3s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% {
        transform: translateX(-12%);
    }

    50% {
        transform: translateX(12%);
    }
}

.pipeline-step span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.pipeline-step strong {
    display: block;
    margin-top: 18px;
    font-size: clamp(20px, 2.1vw, 26px);
    line-height: 1.05;
    word-break: normal;
    overflow-wrap: normal;
}

.pipeline-step small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    line-height: 1.4;
}

.pipeline-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    position: relative;
}

.pipeline-line::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 14px var(--accent);
    animation: movePoint 2.4s linear infinite;
}

@keyframes movePoint {
    from {
        left: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    to {
        left: 100%;
        opacity: 0;
    }
}

.terminal-card {
    min-height: 284px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.terminal-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
}

#terminalText {
    white-space: pre-wrap;
    margin: 0;
    color: #d8fff6;
    font-size: 14px;
    line-height: 1.7;
}

#terminalText::after {
    content: "▋";
    color: var(--accent);
    animation: blink 0.9s steps(2, start) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 310px;
    padding: 26px;
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 255, 217, 0.45);
    background-color: rgba(255, 255, 255, 0.105);
}

.service-number {
    display: inline-flex;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 38px;
}

.service-card h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.service-card p {
    margin: 18px 0 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.skills-section {
    overflow: hidden;
}

.skills-marquee {
    width: 100%;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background-color: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
}

.skills-track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 18px 0;
    animation: marquee 34s linear infinite;
}

.skills-track span {
    padding: 11px 18px;
    border-radius: 999px;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background-color: rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    font-weight: 700;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.contact-card {
    padding: clamp(28px, 6vw, 64px);
    text-align: center;
}

.contact-card p {
    max-width: 760px;
    margin-left: auto!important;
    margin-right: auto!important;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contact-links a,
.contact-qr-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.065);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.contact-links a:hover,
.contact-qr-button:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 255, 217, 0.55);
    background-color: rgba(102, 255, 217, 0.10);
}

.qr-contact-box {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition:
        grid-template-rows 0.45s ease,
        opacity 0.45s ease,
        margin-top 0.45s ease;
}

.qr-contact-box.is-visible {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 28px;
}

.qr-contact-inner {
    min-height: 0;
    width: min(100%, 320px);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background-color: rgba(255, 255, 255, 0.075);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.qr-contact-title {
    margin: 0 0 16px!important;
    color: var(--text-main)!important;
    font-size: 16px!important;
    font-weight: 800;
    line-height: 1.35!important;
}

.qr-contact-inner img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 18px;
    background-color: #ffffff;
}

.qr-contact-note {
    margin: 14px 0 0!important;
    color: var(--text-muted)!important;
    font-size: 14px!important;
    line-height: 1.45!important;
}

/* Effetto entrata sezioni */
.hero-section,
.system-section,
.services-section,
.skills-section,
.contact-section {
    animation: sectionFade 0.9s ease both;
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tablet */
@media (max-width: 980px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .pipeline-line {
        width: 1px;
        height: 34px;
        margin: 0 auto;
        background: linear-gradient(180deg, transparent, var(--accent), transparent);
    }

    .pipeline-line::after {
        top: 0;
        left: -3px;
        animation: movePointVertical 2.4s linear infinite;
    }

    @keyframes movePointVertical {
        from {
            top: 0;
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        to {
            top: 100%;
            opacity: 0;
        }
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive smartphone */
@media (max-width: 620px) {
    .page-wrapper {
        width: min(100% - 26px, 1180px);
    }

    .hero-section {
        padding-top: 72px;
    }

    .hero-badge {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .small-title {
        font-size: clamp(46px, 16vw, 76px);
    }

    .since {
        font-size: clamp(32px, 12vw, 56px);
    }

    .hero-lead {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .glass-card,
    .service-card,
    .contact-card {
        border-radius: 24px;
    }

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

    .service-card {
        min-height: auto;
    }

    .section-heading h2,
    .contact-card h2 {
        font-size: 38px;
    }

    #networkCanvas {
        opacity: 0.58;
    }
}

/* Riduce animazioni se l’utente ha impostato preferenze di accessibilità */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms!important;
        animation-iteration-count: 1!important;
        scroll-behavior: auto!important;
    }
}

/*
    Effetto reveal progressivo delle sezioni.
    Le sezioni partono leggermente trasparenti e sfocate,
    poi diventano pienamente visibili quando arrivano ad altezza occhi.
*/
.reveal-section {
    opacity: 0.28;
    transform: translateY(34px) scale(0.985);
    filter: blur(4px);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease,
        filter 0.85s ease;
    will-change: opacity, transform, filter;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-section.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}


        .qr-contact-box {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            margin-top: 0;
            overflow: hidden;
            pointer-events: none;
            transition:
                grid-template-rows 0.45s ease,
                opacity 0.45s ease,
                margin-top 0.45s ease;
        }

        .qr-contact-box.is-visible {
            grid-template-rows: 1fr;
            opacity: 1;
            margin-top: 28px;
            pointer-events: auto;
        }

        .qr-contact-inner {
            min-height: 0;
            width: min(100%, 320px);
            margin: 0 auto;
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 26px;
            background-color: rgba(255, 255, 255, 0.075);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
        }

        .qr-contact-title {
            margin: 0 0 16px!important;
            color: var(--text-main, #f5f7fb)!important;
            font-size: 16px!important;
            font-weight: 800;
            line-height: 1.35!important;
        }

        .qr-contact-inner img {
            display: block;
            width: 200px;
            height: 200px;
            margin: 0 auto;
            padding: 10px;
            border-radius: 18px;
            background-color: #ffffff;
        }

        .qr-contact-note {
            margin: 14px 0 0!important;
            color: var(--text-muted, #aab3c5)!important;
            font-size: 14px!important;
            line-height: 1.45!important;
        }

        .contact-qr-button {
            display: inline-flex;
            min-height: 50px;
            align-items: center;
            justify-content: center;
            padding: 0 24px;
            color: var(--text-main, #f5f7fb);
            border: 1px solid var(--border-light, rgba(255, 255, 255, 0.16));
            border-radius: 999px;
            text-decoration: none;
            background-color: rgba(255, 255, 255, 0.065);
            transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
            font: inherit;
            font-weight: 700;
            cursor: pointer;
        }

        .contact-qr-button:hover {
            transform: translateY(-3px);
            border-color: rgba(102, 255, 217, 0.55);
            background-color: rgba(102, 255, 217, 0.10);
        }

        .protected-email-box {
            margin-top: 16px;
            text-align: center;
        }

        .protected-email-button {
            display: inline-flex;
            min-height: 40px;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
            color: var(--text-main, #f5f7fb);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 999px;
            background-color: rgba(255, 255, 255, 0.055);
            font: inherit;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
        }

        .protected-email-button:hover {
            transform: translateY(-2px);
            border-color: rgba(102, 255, 217, 0.55);
            background-color: rgba(102, 255, 217, 0.10);
        }

        .protected-email-link {
            display: none;
            margin-top: 12px;
            color: var(--accent, #66ffd9);
            font-weight: 800;
            text-decoration: none;
            word-break: break-word;
        }

        .protected-email-link.is-visible {
            display: inline-block;
        }

        .site-footer {
            text-align: center;
        }

        .site-footer p {
            max-width: none;
            margin-left: auto;
            margin-right: auto;
            color: rgba(245, 247, 251, 0.88);
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-vat {
            display: inline;
            color: rgba(245, 247, 251, 0.96);
            font-size: inherit;
            font-weight: 800;
        }

/*
    Effetto profondità spazio / galassia.
    Aggiunge un orizzonte luminoso tipo Terra vista da lontano,
    una nebula morbida e un campo stellare sottile senza modificare l'HTML.
*/
body {
    background:
        radial-gradient(circle at 18% 18%, rgba(102, 255, 217, 0.18), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(142, 167, 255, 0.20), transparent 30%),
        radial-gradient(circle at 50% 125%, rgba(20, 82, 130, 0.44), transparent 44%),
        linear-gradient(180deg, #02040a 0%, #05070d 44%, #07111c 100%);
}

.background-glow {
    overflow: hidden;
}

.background-glow::before {
    content: "";
    position: fixed;
    left: 50%;
    bottom: -54vh;
    width: 140vw;
    height: 76vh;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0;
    background:
        radial-gradient(ellipse at center top, rgba(102, 255, 217, 0.34) 0%, rgba(56, 126, 204, 0.22) 18%, rgba(5, 7, 13, 0.05) 48%, transparent 72%),
        linear-gradient(180deg, rgba(100, 220, 255, 0.18), rgba(5, 7, 13, 0.00) 62%);
    box-shadow:
        0 -28px 110px rgba(102, 255, 217, 0.20),
        0 -12px 58px rgba(142, 167, 255, 0.18),
        inset 0 32px 65px rgba(255, 255, 255, 0.055);
    opacity: 0.78;
    pointer-events: none;
}

.background-glow::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.5px),
        radial-gradient(circle at 28% 72%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.4px),
        radial-gradient(circle at 46% 18%, rgba(255, 255, 255, 0.70) 0 1px, transparent 1.5px),
        radial-gradient(circle at 66% 62%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px),
        radial-gradient(circle at 83% 28%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.5px),
        radial-gradient(circle at 92% 78%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.5px);
    background-size: 360px 360px, 420px 420px, 520px 520px, 460px 460px, 380px 380px, 560px 560px;
    animation: starsDrift 90s linear infinite;
}

@keyframes starsDrift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-90px, 70px, 0);
    }
}

@media (max-width: 620px) {
    .background-glow::before {
        bottom: -42vh;
        width: 170vw;
        height: 64vh;
        opacity: 0.66;
    }

    .background-glow::after {
        opacity: 0.25;
    }
}

/*
    Stella cadente casuale.
    La testa della stella è in basso/destra, mentre la scia resta sopra
    e sfuma dal bianco pieno alla trasparenza.
*/
.shooting-star {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 190px;
    height: 2px;
    pointer-events: none;
    opacity: 0;
    transform-origin: right center;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0.70) 76%, rgba(255, 255, 255, 1) 100%);
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.86));
    border-radius: 999px;
    animation: shootingStarMove 1.35s ease-out forwards;
}

.shooting-star::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.98),
        0 0 24px rgba(255, 255, 255, 0.72);
}

@keyframes shootingStarMove {
    0% {
        opacity: 0;
        transform: translate3d(var(--star-start-x), var(--star-start-y), 0) rotate(var(--star-angle)) scaleX(0.28);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--star-end-x), var(--star-end-y), 0) rotate(var(--star-angle)) scaleX(1);
    }
}

@media (max-width: 620px) {
    .shooting-star {
        width: 110px;
    }
}

/*
    Effetto disegno lineare del testo "since 1998".
    Il testo viene tracciato tramite SVG stroke, con linee che compongono i caratteri.
*/
.since-draw {
    width: min(760px, 88vw);
    max-width: 100%;
    height: auto;
    -webkit-text-stroke: 0;
    letter-spacing: 0;
}

.since-draw-svg {
    display: block;
    width: min(760px, 88vw);
    height: auto;
    overflow: visible;
}

.since-draw-text {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 94px;
    font-weight: 250;
    letter-spacing: -5px;
    fill: rgba(255, 255, 255, 0.03);
    stroke: rgba(255, 255, 255, 0.86);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawSinceText 8.5s ease-in-out infinite;
}

.since-draw-text-shadow {
    stroke: rgba(102, 255, 217, 0.38);
    stroke-width: 3.2;
    filter: blur(5px);
    opacity: 0.75;
    animation-duration: 8.5s;
}

@keyframes drawSinceText {
    0% {
        stroke-dashoffset: 1200;
        fill: rgba(255, 255, 255, 0.00);
        opacity: 0.42;
    }

    44% {
        stroke-dashoffset: 0;
        fill: rgba(255, 255, 255, 0.025);
        opacity: 1;
    }

    76% {
        stroke-dashoffset: 0;
        fill: rgba(255, 255, 255, 0.045);
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -1200;
        fill: rgba(255, 255, 255, 0.00);
        opacity: 0.38;
    }
}

@media (max-width: 620px) {
    .since-draw,
    .since-draw-svg {
        width: min(100%, 360px);
    }

    .since-draw-text {
        font-size: 86px;
        letter-spacing: -4px;
    }
}