:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --accent-blue: #2563eb;
    /* blue-600 */
    --accent-purple: #9333ea;
    /* purple-600 */
    --accent-orange: #f97316;
    /* orange-500 */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 1.5rem;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.text-accent {
    color: #3b82f6;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: none;
}

@media (min-width: 768px) {
    .nav-actions {
        display: block;
    }
}

.btn-primary-nav {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-nav:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    /* Add JS to toggle */
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
}

/* --- Canvas Wrapper --- */
.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

canvas {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: cover;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 8rem;
    /* Nav offset */
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Blurs */
.hero-section::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 4s infinite;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content vertically/horizontally */
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        justify-content: center;
        /* Center horizontally */
    }
}

.hero-text-col {
    width: 100%;
    margin-bottom: 4rem;
    text-align: center;
    /* Center text */
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-text-col {
        width: 80%;
        /* Limit width for readability */
        margin-bottom: 0;
        padding-right: 0;
        /* Remove right padding since no right col */
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    /* blue-400 */
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #60a5fa;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #ffffff, #6b7280);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-style: italic;
    font-weight: 300;
    color: #fff;
    -webkit-text-stroke: 0;
    /* Reset clip for subtitle */
    background: none;
    -webkit-text-fill-color: #fff;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 32rem;
    line-height: 1.625;
    margin-bottom: 2.5rem;
    margin-left: auto;
    /* Center desc */
    margin-right: auto;
}

.btn-hero {
    position: relative;
    padding: 1rem 2rem;
    background: var(--accent-blue);
    border: none;
    border-radius: 9999px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-flex;
}

.btn-hero:hover {
    transform: scale(1.05);
}

.btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Hero Visual Removed --- */
/* .hero-visual-col was removed as per user request */





/* --- Scroll Spacer & Prompt --- */
.scroll-spacer {
    height: 400vh;
    /* Replaces the long scroll, we act as if canvas is here */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 5;
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 1s infinite;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25%);
    }
}

/* --- Selected Works Gallery --- */
.works-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    /* Cover the canvas */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.view-all-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.work-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s duration-700 ease;
}

.work-card:hover img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-category {
    color: #60a5fa;
    /* Keep legible blue or switch to a gradient? Let's try a bright Cyan/Blue mix for "Bold" */
    color: #38bdf8;
    /* Sky 400 - very bright and popping */
    font-size: 0.875rem;
    font-weight: 800;
    /* Extra bold */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* "Eye smoothing" - adds contrast */
}

.work-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    /* Larger */
    font-weight: 800;
    /* Bolder */
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    /* Deep shadow for pop */
    transform: translateY(1rem);
    transition: transform 0.3s ease;
}

.work-card:hover .work-title {
    transform: translateY(0);
}

/* --- Services Section --- */
.services-section {
    padding: 6rem 0;
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-blue {
    color: var(--accent-blue);
}

.icon-purple {
    color: var(--accent-purple);
}

.icon-orange {
    color: var(--accent-orange);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.625;
}

/* --- Footer --- */
/* --- Footer / Contact --- */
.footer {
    background: #000;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    position: relative;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (min-width: 900px) {
    .contact-grid {
        display: flex;
        justify-content: center;
        gap: 6rem;
    }
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    font-weight: 700;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

/* Contact Info Styles */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.icon-box i {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-item:hover .icon-blue {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.contact-info-item:hover .icon-purple {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

.contact-info-item:hover .icon-orange {
    border-color: #38bdf8;
    color: #38bdf8;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.info-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-link {
    color: var(--accent-blue);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.info-link:hover {
    color: var(--accent-purple);
}

.social-mini-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-mini-links a {
    color: var(--text-muted);
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-mini-links a:hover {
    color: #fff;
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.contact-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.contact-simple h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin: 0;
}

.contact-simple p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
}

.copyright {
    text-align: center;
    color: #4b5563;
    font-size: 0.875rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* --- Tools Section (Refined) --- */
.tools-section {
    padding: 4rem 0;
    min-height: auto;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tool-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Gradient Border Effect */
.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tool-card:hover {
    background: rgba(30, 30, 30, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.tool-card:hover::before {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

.tool-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.tool-card h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    margin: 0;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
}

.tool-card:hover h4 {
    background: linear-gradient(to right, #fff, #fff);
    -webkit-background-clip: text;
}

.tool-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* UI Component "Preview" Mockup inside card */
.tool-ui-preview {
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

.tool-ui-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.tool-ui-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    flex: 1;
}

.tool-card:hover .tool-ui-dot {
    background: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.tool-card:hover .tool-ui-bar {
    background: rgba(255, 255, 255, 0.3);
}

/* --- Brand Logo Image --- */
.brand-logo-img {
    height: 12rem;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.1);
}

/* --- Tool Preview Image --- */
.tool-preview-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-preview-img {
    transform: scale(1.02);
}

/* --- Form Status --- */
.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.5rem;
    transition: all 0.3s ease;
}

.form-status.success {
    color: #4ade80;
    /* green-400 */
}

.form-status.error {
    color: #f87171;
    /* red-400 */
}

/* --- Loading Screen --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader {
    --ANIMATION-DELAY-MULTIPLIER: 70ms;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader span {
    padding: 0;
    margin: 0;
    letter-spacing: -5rem;
    animation-delay: 0s;
    transform: translateY(4rem);
    animation: hideAndSeek 1s alternate infinite cubic-bezier(0.86, 0, 0.07, 1);
}

.loader .l {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 0);
}

.loader .o {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 1);
}

.loader .a {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 2);
}

.loader .d {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 3);
}

.loader .ispan {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 4);
}

.loader .n {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 5);
}

.loader .g {
    animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 6);
}

.letter {
    width: fit-content;
    height: 3rem;
    fill: white;
}

.loader svg {
    height: 18px;
    width: auto;
    transform: scale(2.5);
}

.i {
    margin-inline: 5px;
}

@keyframes hideAndSeek {
    0% {
        transform: translateY(4rem);
    }

    100% {
        transform: translateY(0rem);
    }
}