/* ── Fonts ── */
@font-face {
    font-family: "Inter";
    src: url("../../../fonts/Inter/Inter-VariableFont_opsz,wght.ttf");
}

/* ── Base ── */
*, a {
    font-family: var(--font, "Lexend");
    font-size: 1rem;
    color: var(--font-color);
    text-decoration: none;
}
.sw-separator::after{
    display: none;
}
*:not(h1):not(h2):not(h3):not(#header-logo span):not(i):not(.tnt-gradient):not(.tnt-accent) {
    font-family: "Inter", sans-serif;
}
body {
    background-color: var(--color-bg);
}
main {
    overflow-x: hidden;
}
button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
p { margin: 0; }
p, p * {
    font-family: "Inter", sans-serif;
    font-size: calc(1rem + 0.4vw);
    font-weight: 300;
}
i { color: var(--accent-color); }

/* ── Typography ── */
h1, h1 span {
    font-family: "Space Grotesk", sans-serif !important; 
    font-size: calc(1.5rem + 2vw) !important;
    font-weight: 800;
    color: white;
    letter-spacing: -0.06rem;
}
.sw-separator-content i, .sw-separator-content span{

}
h2, h2 span {
    font-family: "Space Grotesk", sans-serif !important;
    font-size: calc(1.5rem + 0.5vw);
    font-weight: 600;
    text-align: center;
    color: white;
}
h3 {
    font-family: "Roboto", sans-serif;
    font-size: calc(1rem + 0.4vw);
    font-weight: 500;
    margin: 0;
    color: white;
}

.tnt-bg-sparks {
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 85, 59, 0.1) 0%, transparent 60%),
                        radial-gradient(circle at 80% 20%, rgba(254, 101, 0, 0.15) 0%, transparent 40%);
    background-color: #131313;
}
.glow-red-border {
    box-shadow: inset 1px 1px 0px 0px rgba(255, 85, 59, 0.5);
}
.glow-orange-border {
    box-shadow: inset 1px 1px 0px 0px rgba(254, 101, 0, 0.5);
}
.text-glow {
    text-shadow: 0 0 12px rgba(255, 85, 59, 0.8);
}
.text-primary-container{
    color:#FF553B !important
}
.text-secondary-container{
    color: #fe6500 !important
}
.text-tertiary-container{
    color: white !important;
}
/* ── Section base ── */
section {
    width: 90%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
section:not(:first-of-type) {
    justify-content: center;
    margin-top: 4rem;
}

/* .vp-section overrides width to 100% for full-bleed layouts */
.vp-section {
    width: 100%;
    margin-top: 0;
}

/* ── Inputs ── */
.dynamic-select, input {
    border: 1px solid #3b3b3b;
    border-radius: 0.3rem;
    padding: 0.2rem 0.5rem;
}
input, .dynamic-select-options, .dynamic-select-option {
    background-color: var(--color-bg) !important;
}
.dynamic-selected, .dynamic-select-option {
    color: white !important;
}
.dynamic-select-option:hover {
    background-color: #303030 !important;
}
.dynamic-selected .c_name { display: none; }
.dynamic-select .fa-solid.fa-caret-down { display: none !important; }

/* ── Button CTA ── */
.button-cta {
    position: relative;
    text-align: center;
    font-family: var(--font, "Lexend");
    font-size: calc(1rem + 0.2vw);
    font-weight: 500;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid transparent;
    background: var(--gradient-buttons);
    border-radius: 0.5rem;
    transition: all 0.3s;
    margin-block: 2rem;
    cursor: pointer;
    white-space: nowrap;
}
.button-cta, .button-cta i {
    color: var(--font-color-buttons);
}
.button-cta:hover {
    scale: 1.05;
}

/* ── Section Pill ── */
.section-pill, .section-pill * {
    font-size: calc(1rem + 0.25vw);
}
.section-pill {
    font-family: var(--span-cta-font, "Dongle");
    text-align: center;
    display: flex;
    gap: calc(0.5rem + 0.5vw);
    padding: calc(0.2rem + 0.3vw) calc(0.75rem + 0.5vw) calc(0.2rem + 0.3vw) calc(0.5rem + 0.5vw);
    border-radius: 4rem;
    border: var(--border);
    background: linear-gradient(90deg, rgb(28, 28, 28) 10%, var(--color-bg) 100%);
}
.vp-header-container{
    justify-content: flex-start !important;
}
.vp-header-nav .button-cta {
    margin-block: 0;
}
/* ── Footer ── */
.footer {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-inline: 2rem;
    width: -webkit-fill-available;
    padding-block: 2rem;
}
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background: var(--accent-color-bg);
    z-index: 1000;
}
.footer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
    color: var(--font-color);
}

/* ── Responsive ── */
@media screen and (min-width: 1200px) {
    section {
        width: 70%;
    }
    .vp-section {
        width: 100%;
    }
}

/* ── Title gradients ── */
.tnt-gradient {
    background: linear-gradient(to top right, #401919, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: inherit;
    font-weight: inherit;
}
.tnt-gradient-orange {
    background: linear-gradient(to right, #ff0000, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: inherit;
    font-weight: inherit;
}

/* ── Accent highlight ── */
.tnt-accent {
    color: var(--accent-color);
    display: inline-block;
    transform: skewX(-8deg);
    font-size: inherit;
    font-weight: inherit;
}

.tnt-accent {
    color: var(--accent-color);
    display: inline-block;
    transform: skewX(-8deg);
    font-size: inherit;
    font-weight: inherit;
}

/* ── Hero overrides ── */
.vp-hero-split-text p {
    text-align: center;
    max-width: 100% !important;
}

/* Hero: text at 60%, image as background right-aligned */
.vp-hero-split-text h1 {
    white-space: nowrap;
    position: relative;
}
.vp-hero-split-text h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color-bg);
}

.vp-hero-split {
    position: relative !important;
    grid-template-columns: 60%;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    margin-bottom: 0;
}
.vp-hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
    z-index: 1;
}
.vp-hero-split > * {
    position: relative;
    z-index: 2;
}
.vp-hero-split-image {
    display: none !important;
}

/* ── Header overrides ── */
#header-logo img {
    width: auto !important;
    height: calc(1.5rem + 0.5vw) !important;
    object-fit: contain !important;
}
#header-logo span {
    translate: unset;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    background: linear-gradient(to top right, #ff0000, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vp-header-nav a {
    font-family: "Roboto", sans-serif;
    font-size: calc(0.9rem + 0.2vw);
    font-weight: 400;
    letter-spacing: 0.03em;
}
.vp-header-nav a {
    position: relative;
}
.vp-header-nav a[href]:focus::after,
.vp-header-nav a[href].active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #401919, #ff0000, #ff6a00);
}

@media (max-width: 800px) {
    .vp-hero-split-text h1 {
        white-space: normal;
    }
    .vp-hero-split {
        background-position: center bottom;
        background-size: contain;
        padding-bottom: 56vw !important;
    }
    .vp-hero-split::before {
        display: none;
    }
}

/* ── Bullet list title font ── */
.vp-bullet-item h3 {
    font-family: system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── New Agents videos ── */
.tnt-agents-videos {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-block: calc(3rem + 2vw);
    padding-inline: calc(0.5rem + 1vw)
}

.tnt-agents-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(1rem + 1vw);
    justify-items: center;
    width: 100%;
    max-width: 1200px;
}

.tnt-video-wrap {
    width: 100%;
}
.tnt-video-wrap video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 0.75rem;
}

@media (max-width: 600px) {
    .tnt-agents-videos-grid {
        grid-template-columns: 1fr;
    }
    .tnt-video-wrap video {
        max-height: 50vw;
        aspect-ratio: unset;
        object-fit: contain;
    }
}

/* ── Recruitment section ── */
.tnt-recruit {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: calc(0.5rem + 5vw);
    text-align: center;
    background: linear-gradient(to bottom, var(--color-bg-dark), var(--color-bg));
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}
.tnt-recruit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #401919, #ff0000, #ff7f00);
}
.tnt-recruit-img-container{
    width: calc(15rem + 15vw);
    max-width: 500px;
    opacity: 0.9;
    position: relative;
    border-radius: 50rem;
    overflow: hidden;
    filter: brightness(1.2);
    margin-bottom: 1.5rem;
}

.tnt-recruit-img-container::after{
    content: '';
    background: radial-gradient(transparent, 40%, #140606 70%);
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
}

.tnt-recruit-title {
    max-width: 560px;
    font-size: calc(1.75rem + 1vw);
}

.tnt-recruit-subtitle {
    max-width: 500px;
    opacity: 0.6;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: -0.5rem;
}
.bg-ball-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    margin: 0 !important;
}

.bg-ball-glow-orb {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    border-radius: 9999px;
    background-color: rgb(255 85 59 / 0.2);
    mix-blend-mode: screen;
    filter: blur(120px);
}

.vp-hero-1{
    padding-bottom: 0 !important;
    overflow: visible !important;
}
.vp-hero-1-subtitle {
    font-size: var(--general-font-base-size, calc(0.7rem + 0.3vw)) !important;
    max-width: 90% !important;
}
.vp-vsl-section{ 
    margin-block: 0 !important;
    padding-block: 1rem !important;
}
.vp-ic-icon {
    background: linear-gradient(to top right, #401919, #ff6300, #ff6a00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.vp-icon-card {
    border-radius: 0.5rem !important;
}
@media screen and (min-width: 1500px) {
    #v-player {
        width: 60% !important;
    }
}

/* ── CTA Colored override ── */
.vp-cta-colored {
    background: linear-gradient(to bottom, var(--color-bg), var(--accent-color)) !important;
}
.vp-cta-colored::before,
.vp-cta-colored::after {
    display: none !important;
}

/* ── About: agent recruitment layout ── */
.vp-about-ending {
    margin-top: calc(1.5rem + 2vw);
}

.vp-about .vp-about-grid {
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;
    gap: calc(1rem + 1vw);
}
.vp-about .vp-about-image {
    position: relative;
}
.vp-about .vp-about-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    height: 100%;
    scale: 1.3;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(255, 85, 59, 0.4) 0%, rgba(254, 101, 0, 0.2) 50%, transparent 75%);
    filter: blur(40px);
    z-index: 0;
}
.vp-about .vp-about-image img {
    border-radius: 0.5rem;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.vp-about-content p, .vp-about-content p * {
    font-size: calc(0.8rem + 0.2vw) !important;
}
@media (max-width: 800px) {
    .vp-header-container {
        padding: 0.5rem;
    }
    .vp-about .vp-about-grid {
        grid-template-columns: 1fr;
    }
    .vp-about .vp-about-image img {
        max-width: 280px;
    }
    .vp-about .vp-about-image {
        margin-bottom: 1.5rem;
    }
}
