.elementor-kit-1197{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-1197 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ------------------------------------------
   THEME COLOR
-------------------------------------------*/
:root {
    --thz-bright: var(--theme-palette-color-1);
}

/* ------------------------------------------
   HERO BASE
-------------------------------------------*/
.thz-hero {
    position: relative;
    background: transparent;
    padding: 140px 0;
    text-align: center; /* center everything */
}

/* ------------------------------------------
   TERMINAL BASE (TYPING ENGINE)
-------------------------------------------*/
.thz-terminal,
.thz-terminal-title {
    font-family: "Courier New", monospace;
    color: var(--thz-bright);
}

.thz-line {
    position: relative;
    width: max-content;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    border-right: 2px solid var(--thz-bright);
    margin: 0 auto; /* center lines */
    animation:
        thzReveal 0s forwards var(--d),
        thzType 1.2s steps(30) forwards calc(var(--d) + 0.1s),
        thzCursor 0.8s step-end infinite alternate calc(var(--d) + 1.3s);
}

/* ------------------------------------------
   HERO LINES (BIGGER + GLITCH + SHIMMER)
-------------------------------------------*/
.thz-line-hero {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-right-width: 3px;
    text-shadow: 0 0 12px var(--thz-bright);
    animation:
        thzReveal 0s forwards var(--d),
        thzType 2.8s steps(40) forwards calc(var(--d) + 0.1s),
        thzCursor 0.8s step-end infinite alternate calc(var(--d) + 2.9s),
        thzShimmer 6s linear infinite calc(var(--d) + 3.2s);
}

/* ------------------------------------------
   RGB GLITCH (HERO ONLY)
-------------------------------------------*/
.thz-line-hero::before,
.thz-line-hero::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.thz-line-hero::before {
    color: #ff004c;
    animation: thzRGB1 2.2s infinite linear alternate-reverse;
}

.thz-line-hero::after {
    color: #00eaff;
    animation: thzRGB2 2.2s infinite linear alternate-reverse;
}

/* ------------------------------------------
   PARTICLES
-------------------------------------------*/
.thz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--thz-bright) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.15;
    animation: thzParticles 12s linear infinite;
    pointer-events: none;
}

/* ------------------------------------------
   RESPONSIVE HERO TEXT
-------------------------------------------*/

/* TABLET */
@media (max-width: 1024px) {
    .thz-line-hero {
        font-size: 3rem;
        letter-spacing: 1.5px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .thz-line-hero {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    .thz-terminal-title {
        margin-bottom: 20px;
    }
}

/* ------------------------------------------
   KEYFRAMES
-------------------------------------------*/
@keyframes thzReveal { to { opacity: 1; } }

@keyframes thzType { from { width: 0; } to { width: 100%; } }

@keyframes thzCursor {
    0% { border-color: transparent; }
    100% { border-color: var(--thz-bright); }
}

@keyframes thzShimmer {
    0% { text-shadow: 0 0 12px var(--thz-bright); }
    50% { text-shadow: 0 0 22px var(--thz-bright), 0 0 40px var(--thz-bright); }
    100% { text-shadow: 0 0 12px var(--thz-bright); }
}

@keyframes thzRGB1 {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-3px, -2px); }
    40% { transform: translate(2px, 1px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(3px, -1px); }
    100% { transform: translate(0, 0); }
}

@keyframes thzRGB2 {
    0% { transform: translate(0, 0); }
    20% { transform: translate(2px, 1px); }
    40% { transform: translate(-3px, -2px); }
    60% { transform: translate(3px, -1px); }
    80% { transform: translate(-2px, 2px); }
    100% { transform: translate(0, 0); }
}

@keyframes thzParticles {
    0% { background-position: 0 0; }
    100% { background-position: 200px 400px; }
}/* End custom CSS */