:root {
    /* =========================================
       NOTHING DARK
    ========================================= */

    --base: #080808;
    --mantle: #0d0d0d;
    --crust: #050505;
    --surface: #141414;
    --surface-2: #1b1b1b;

    --text: #f5f5f5;
    --subtext: #8b8b8b;
    --muted: #5d5d5d;

    --white: #ffffff;
    --red: #ff3b30;
    --green: #00e676;
    --yellow: #ffd600;

    --border: rgba(255, 255, 255, 0.12);
    --border-soft: rgba(255, 255, 255, 0.07);

    --max-width: 1120px;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 50% -10%,
            #202020 0%,
            #0d0d0d 28%,
            var(--base) 65%
        );

    line-height: 1.6;

    min-height: 100vh;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.8) 0.5px,
            transparent 0.5px
        );

    background-size: 5px 5px;

    z-index: -1;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

hr {
    border: none;

    height: 1px;

    margin: 3rem 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 7px,
            #444 8px,
            #444 9px
        );

    opacity: 0.7;
}


/* =========================================
   GLOBAL CONTAINER
========================================= */

.container {
    width: min(
        var(--max-width),
        calc(100% - 2rem)
    );

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    background: rgba(5, 5, 5, 0.92);

    border-bottom: 1px solid var(--border-soft);

    backdrop-filter: blur(18px);
}

.header-row {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 1rem;

    padding: 1rem 0;
}


/* =========================================
   NOTHING-STYLE BRAND
========================================= */

.brand {
    position: relative;

    display: inline-flex;
    align-items: center;

    font-size: 1.7rem;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    line-height: 1;
}

.brand::before {
    content: "";

    width: 8px;
    height: 8px;

    margin-right: 10px;

    background: var(--red);

    border-radius: 50%;

    box-shadow:
        0 0 12px rgba(255, 59, 48, 0.45);
}

.brand-bold {
    font-weight: 700;
}

.brand-thin {
    font-weight: 300;

    color: #777;
}


/* =========================================
   NAVIGATION
========================================= */

.nav-links {
    display: flex;

    gap: 1.5rem;
}

.nav-links a,
.footer-links a {
    position: relative;

    color: var(--subtext);

    font-size: 0.85rem;

    letter-spacing: 0.04em;

    transition:
        color 0.2s ease;
}

.nav-links a::after,
.footer-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: var(--red);

    transition: width 0.2s ease;
}

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

.nav-links a:hover::after,
.footer-links a:hover::after {
    width: 100%;
}


/* =========================================
   BUTTONS
========================================= */

.nav-btn,
.btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 4px;

    font-weight: 600;

    letter-spacing: 0.04em;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.nav-btn {
    padding: 0.65rem 1rem;

    border: 1px solid var(--border);

    background: var(--surface);

    color: var(--text);

    font-size: 0.85rem;
}

.nav-btn:hover {
    background: var(--surface-2);

    border-color: #444;

    transform: translateY(-1px);
}

.nav-btn-primary {
    background: var(--red);

    border-color: var(--red);

    color: #fff;
}

.nav-btn-primary:hover {
    background: #ff5148;

    border-color: #ff5148;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    padding: 6rem 0 5rem;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    top: 20%;
    right: -120px;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 50%;

    box-shadow:
        0 0 0 20px rgba(255,255,255,0.015),
        0 0 0 40px rgba(255,255,255,0.01);

    pointer-events: none;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.9fr;

    gap: 4rem;

    align-items: center;
}


/* =========================================
   HERO LABEL
========================================= */

.hero-label {
    display: inline-flex;

    align-items: center;

    margin-bottom: 1.4rem;

    padding: 0.4rem 0.7rem;

    border-radius: 3px;

    background: transparent;

    border: 1px solid var(--border);

    color: var(--subtext);

    font-family:
        "Courier New",
        monospace;

    font-size: 0.7rem;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.hero-label::before {
    content: "●";

    margin-right: 8px;

    color: var(--red);

    font-size: 0.55rem;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.hero h1 {
    margin: 0 0 1.25rem;

    max-width: 760px;

    font-size: clamp(
        2.8rem,
        6vw,
        5.5rem
    );

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 700;
}

.hero-text {
    max-width: 650px;

    margin-bottom: 2rem;

    color: var(--subtext);

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================
   HERO ACTIONS
========================================= */

.hero-actions {
    display: flex;

    gap: 0.75rem;

    flex-wrap: wrap;
}

.btn {
    padding: 0.85rem 1.35rem;

    border: 1px solid var(--border);

    font-size: 0.85rem;
}

.btn-primary {
    background: var(--text);

    border-color: var(--text);

    color: #080808;
}

.btn-primary:hover {
    background: #fff;

    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;

    color: var(--text);
}

.btn-secondary:hover {
    border-color: #555;

    background: var(--surface);
}


/* =========================================
   TECHNICAL HERO PANEL
========================================= */

.hero-panel {
    position: relative;

    padding: 1.5rem;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 4px;

    overflow: hidden;
}

.hero-panel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 35%;
    height: 2px;

    background: var(--red);
}

.hero-panel::after {
    content: "01";

    position: absolute;

    right: 15px;
    bottom: 8px;

    color: rgba(255,255,255,0.08);

    font-family:
        "Courier New",
        monospace;

    font-size: 4rem;

    font-weight: 700;
}

.panel-title {
    margin-bottom: 1rem;

    color: var(--text);

    font-family:
        "Courier New",
        monospace;

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.panel-list {
    display: grid;

    gap: 0;

    border-top: 1px solid var(--border-soft);
}

.panel-item {
    padding: 0.85rem 0;

    border-bottom: 1px solid var(--border-soft);
}

.panel-item strong {
    display: block;

    margin-bottom: 0.15rem;

    color: var(--text);

    font-family:
        "Courier New",
        monospace;

    font-size: 0.8rem;
}

.panel-item strong::before {
    content: "→ ";

    color: var(--red);
}

.panel-item span {
    color: var(--subtext);

    font-size: 0.85rem;
}


/* =========================================
   SECTIONS
========================================= */

.features-section {
    padding: 2rem 0 4rem;
}

.section {
    position: relative;

    padding: 5rem 0;
}

.section-alt {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,0.018),
            transparent
        );
}

.section-heading {
    position: relative;

    margin-bottom: 2.5rem;

    padding-left: 1rem;
}

.section-heading::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 100%;

    background: var(--red);
}

.section-heading p {
    margin: 0 0 0.5rem;

    color: var(--red);

    font-family:
        "Courier New",
        monospace;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    font-size: 0.7rem;
}

.section-heading h2 {
    margin: 0;

    color: var(--text);

    font-size: clamp(
        1.8rem,
        4vw,
        2.8rem
    );

    line-height: 1.1;

    letter-spacing: -0.035em;
}


/* =========================================
   GRIDS
========================================= */

.feature-grid,
.pricing-grid,
.project-grid,
.testimonial-grid {
    display: grid;

    gap: 1px;

    background: var(--border);

    border: 1px solid var(--border);

    overflow: hidden;
}

.feature-grid,
.pricing-grid,
.project-grid,
.testimonial-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


/* =========================================
   FEATURE CARDS
========================================= */

.feature-card {
    display: grid;

    gap: 1.25rem;

    min-height: 260px;

    padding: 1.75rem;

    border: none;

    border-radius: 0;

    background: var(--surface);

    color: var(--text);

    text-align: left;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.feature-card:hover {
    background: #191919;

    transform: translateY(-3px);
}

.feature-card i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 3rem;
    height: 3rem;

    border-radius: 3px;

    background: #0a0a0a;

    border: 1px solid var(--border);

    color: var(--text);

    font-size: 1.3rem;
}

.feature-card i::after {
    content: "";

    position: absolute;
}

.feature-card h3 {
    margin: 0;

    font-size: 1.15rem;

    line-height: 1.2;
}

.feature-card p {
    margin: 0;

    color: var(--subtext);

    line-height: 1.75;

    font-size: 0.9rem;
}


/* =========================================
   SERVICE LEGEND
========================================= */

.service-legend {
    margin-top: 1.5rem;

    padding: 1.25rem 1.5rem;

    border-radius: 3px;

    background: var(--surface);

    border: 1px solid var(--border);

    color: var(--subtext);
}

.service-legend h3 {
    margin: 0 0 0.5rem;

    color: var(--text);

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.service-legend p {
    margin: 0;

    line-height: 1.7;

    font-size: 0.85rem;
}


/* =========================================
   PRICING TABLE
========================================= */

.pricing-table-wrap {
    overflow-x: auto;

    margin: 0;

    padding: 0;
}

.pricing-table {
    width: 100%;

    min-width: 780px;

    border-collapse: collapse;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 0;

    overflow: hidden;

    box-shadow: none;
}

.pricing-table th,
.pricing-table td {
    padding: 1.1rem 1rem;

    text-align: center;

    color: var(--subtext);

    border-right: 1px solid var(--border-soft);

    border-bottom: 1px solid var(--border-soft);
}

.pricing-table thead th {
    background: #0a0a0a;

    color: var(--text);

    font-family:
        "Courier New",
        monospace;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    font-size: 0.75rem;

    border-bottom: 1px solid #333;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;

    color: var(--text);

    background: #101010;

    font-weight: 600;
}

.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.025);
}

.pricing-table .best {
    color: var(--text);
}

.pricing-table .best-col {
    background: rgba(255, 59, 48, 0.045);

    box-shadow:
        inset 1px 0 rgba(255,59,48,0.35),
        inset -1px 0 rgba(255,59,48,0.35);
}

.pricing-table tfoot th,
.pricing-table tfoot td {
    border-top: 1px solid #333;
}

.pricing-table tfoot td {
    padding-top: 1.25rem;
}

.pricing-table .btn {
    width: 100%;
}


/* =========================================
   STATUS
========================================= */

.status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 2rem;
    height: 2rem;

    border-radius: 3px;

    font-size: 0.8rem;

    color: var(--green);

    background: rgba(0, 230, 118, 0.06);

    border: 1px solid rgba(0,230,118,0.2);
}

.status--no {
    color: #666;

    background: rgba(255,255,255,0.025);

    border-color: var(--border-soft);
}

.status--optional {
    display: inline-flex;

    gap: 0.35rem;

    align-items: center;
    justify-content: center;

    padding: 0.4rem 0.7rem;

    border-radius: 3px;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.7rem;

    color: var(--yellow);

    background: rgba(255,214,0,0.04);

    border: 1px solid rgba(255,214,0,0.15);
}


/* =========================================
   PRICE CARDS
========================================= */

.price-card {
    display: flex;

    flex-direction: column;

    gap: 1.25rem;

    min-height: 520px;

    padding: 1.5rem;

    border: none;

    border-radius: 0;

    background: var(--surface);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.price-card:hover {
    background: #191919;
}

.price-card.featured {
    position: relative;

    transform: none;

    border: none;

    background:
        linear-gradient(
            180deg,
            rgba(255,59,48,0.08),
            var(--surface) 35%
        );
}

.price-card.featured::before {
    content: "RECOMMENDED";

    position: absolute;

    top: 0;
    right: 0;

    padding: 0.35rem 0.6rem;

    background: var(--red);

    color: white;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.6rem;

    letter-spacing: 0.08em;
}

.price-card-head {
    display: grid;

    gap: 0.65rem;
}

.price-card-label {
    color: var(--text);

    font-family:
        "Courier New",
        monospace;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.price-note {
    margin: 0;

    color: var(--subtext);

    line-height: 1.6;

    font-size: 0.85rem;
}

.price {
    margin: 0;

    color: var(--text);

    font-family:
        "Courier New",
        monospace;

    font-size: clamp(
        2rem,
        3vw,
        2.6rem
    );

    font-weight: 700;

    letter-spacing: -0.05em;
}

.price::before {
    content: "€ ";

    color: var(--red);

    font-size: 0.8em;
}

.price-features {
    list-style: none;

    margin: 0;

    padding: 0;

    display: grid;

    gap: 0;

    border-top: 1px solid var(--border-soft);
}

.price-features li {
    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding: 0.75rem 0;

    color: var(--subtext);

    font-size: 0.85rem;

    border-bottom: 1px solid var(--border-soft);
}

.price-features li i {
    display: inline-flex;

    width: 1.25rem;

    justify-content: center;

    color: var(--green);
}

.price-details {
    display: grid;

    gap: 0.5rem;

    color: var(--subtext);

    font-size: 0.8rem;

    font-family:
        "Courier New",
        monospace;
}

.price-details span {
    display: inline-flex;

    justify-content: space-between;

    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.6rem;

    border-radius: 3px;

    background: var(--red);

    color: #fff;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.65rem;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    letter-spacing: 0.06em;
}


/* =========================================
   PROJECT CARDS
========================================= */

.project-card {
    display: flex;

    flex-direction: column;

    background: var(--surface);

    border: none;

    border-radius: 0;

    overflow: hidden;

    text-decoration: none;

    color: inherit;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.project-card:hover {
    transform: translateY(-4px);

    background: #191919;

    box-shadow: none;
}

.project-card-media {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}

.project-card-media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 65%,
            rgba(255,59,48,0.12)
        );

    pointer-events: none;
}

.project-card-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter: grayscale(0.2) contrast(1.05);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.project-card:hover .project-card-media img {
    transform: scale(1.03);

    filter:
        grayscale(0)
        contrast(1.08);
}

.project-card-content {
    display: grid;

    gap: 0.5rem;

    padding: 1.25rem;
}

.project-card-content h3 {
    margin: 0;

    font-size: 1.05rem;

    color: var(--text);
}

.project-card-content span {
    color: var(--subtext);

    font-size: 0.85rem;
}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-card {
    display: flex;

    flex-direction: column;

    gap: 1.5rem;

    padding: 1.75rem;

    border: none;

    border-radius: 0;

    background: var(--surface);

    color: var(--text);
}

.testimonial-stars {
    display: flex;

    gap: 0.25rem;
}

.testimonial-stars i {
    color: var(--red);

    font-size: 0.8rem;
}

.testimonial-text {
    margin: 0;

    font-size: 0.95rem;

    line-height: 1.8;

    color: var(--subtext);
}

.testimonial-text::before {
    content: "\"";

    color: var(--text);

    font-family:
        Georgia,
        serif;

    font-size: 2.5rem;

    line-height: 0;

    vertical-align: -0.5rem;

    margin-right: 0.2rem;
}

.testimonial-meta {
    display: flex;

    align-items: center;

    gap: 1rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;

    border-radius: 3px;

    background: var(--surface-2);

    border: 1px solid var(--border);

    overflow: hidden;

    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 0;
}

.testimonial-name {
    font-weight: 700;

    color: var(--text);

    font-size: 0.85rem;
}

.testimonial-role {
    color: var(--subtext);

    font-size: 0.8rem;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 2rem 0 3rem;
}

.footer-content {
    display: flex;

    justify-content: space-between;
    align-items: center;

    color: var(--subtext);

    border-top: 1px solid var(--border);

    padding-top: 1.25rem;

    font-size: 0.8rem;
}

.footer-links {
    display: flex;

    gap: 1.25rem;
}


/* =========================================
   TEXT CONTAINER
========================================= */

.text-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 2rem;
}


/* =========================================
   MOBILE NAV
========================================= */

.nav-toggle {
    display: none;

    align-items: center;
    justify-content: center;

    width: 2.75rem;
    height: 2.75rem;

    border-radius: 3px;

    border: 1px solid var(--border);

    background: var(--surface);

    color: var(--text);

    cursor: pointer;
}

.nav-toggle i {
    font-size: 1rem;
}

.site-nav {
    display: flex;

    align-items: center;

    gap: 1.25rem;
}

.site-nav .nav-links {
    display: flex;

    gap: 1.25rem;

    align-items: center;

    flex-wrap: wrap;
}

.site-nav .header-actions {
    display: flex;

    align-items: center;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .container {
        width: min(
            100%,
            calc(100% - 2rem)
        );
    }

    .header-row {
        flex-direction: row;

        justify-content: space-between;

        align-items: center;

        gap: 0.75rem;

        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;

        position: absolute;

        top: calc(100% + 1px);

        left: 0;
        right: 0;

        z-index: 20;

        flex-direction: column;

        gap: 0.75rem;

        padding: 1rem;

        background: #080808;

        border: 1px solid var(--border);

        box-shadow:
            0 25px 50px rgba(0,0,0,0.5);

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transition:
            max-height 0.3s ease,
            opacity 0.3s ease;
    }

    .site-header.nav-open .site-nav {
        display: flex;

        opacity: 1;

        max-height: 35rem;

        text-align: center;
    }

    .site-nav .nav-links {
        display: flex;

        flex-direction: column;

        gap: 0.5rem;

        width: 100%;
    }

    .site-nav .nav-links a {
        width: 100%;

        padding: 0.85rem 1rem;

        border: 1px solid var(--border-soft);

        background: var(--surface);

        color: var(--text);

        font-size: 0.85rem;
    }

    .site-nav .header-actions {
        width: 100%;
    }

    .site-nav .header-actions .nav-btn {
        width: 100%;
    }

    .header-actions .nav-btn {
        padding: 0.85rem 1rem;
    }

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

    .feature-grid,
    .pricing-grid,
    .project-grid,
    .testimonial-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hero-panel {
        margin-top: 1rem;
    }

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

    .price-card.featured {
        transform: none;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 680px) {

    body {
        font-size: 15px;
    }

    .container {
        width: min(
            100%,
            calc(100% - 1.25rem)
        );
    }

    .brand {
        font-size: 1.4rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(
            2.4rem,
            13vw,
            4rem
        );
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .feature-grid,
    .pricing-grid,
    .project-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-heading {
        margin-bottom: 1.75rem;
    }

    .feature-card {
        min-height: auto;

        padding: 1.5rem;
    }

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

    .pricing-table {
        min-width: 700px;
    }

    .pricing-table-wrap {
        overflow-x: auto;

        border-left: 1px solid var(--border);

        border-right: 1px solid var(--border);
    }

    .footer-content {
        flex-direction: column;

        gap: 1rem;

        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}


/* =========================================
   ACCESSIBILITY
========================================= */

:focus-visible {
    outline: 1px solid var(--red);

    outline-offset: 4px;
}


/* =========================================
   RED ACCENT UTILITIES
========================================= */

.text-red {
    color: var(--red);
}

.red-dot {
    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 5px;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 8px rgba(255,59,48,0.45);
}


/* =========================================
   NOTHING-STYLE TECH DETAILS
========================================= */

[data-label] {
    position: relative;
}

.tech-label {
    font-family:
        "Courier New",
        monospace;

    font-size: 0.7rem;

    color: var(--muted);

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.tech-label::before {
    content: "// ";

    color: var(--red);
}


/* =========================================
   RED STATUS LIGHT
========================================= */

.status-light {
    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 10px rgba(255,59,48,0.5);

    animation: nothing-pulse 2.5s ease-in-out infinite;
}

@keyframes nothing-pulse {

    0%,
    100% {
        opacity: 0.45;

        box-shadow:
            0 0 5px rgba(255,59,48,0.25);
    }

    50% {
        opacity: 1;

        box-shadow:
            0 0 14px rgba(255,59,48,0.6);
    }
}