/* ==========================================================================
   MASTERGRADE PRO 2.0 — Landing Page Styles
   Extracted from landing/index.php inline <style> blocks.
   ========================================================================== */

/* ── 1. Font Faces ── */
@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/rajdhani-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/rajdhani-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/rajdhani-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/rajdhani-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

/* ── 2. Base & Typography ── */
html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
li,
blockquote,
.font-headline,
.font-body,
.font-label,
.font-body-large,
.font-body-extralarge,
.synth-body-content,
.take-body,
.slw-modal-body,
.slw-legal-text {
    line-height: 1.2 !important;
}

.font-body-large {
    font-size: 1.1rem;
}

.font-body-extralarge {
    font-size: 1.2rem;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── 3. Cinematic Effects ── */
.cinematic-gradient {
    background: linear-gradient(180deg, rgba(19, 20, 14, 0) 0%, rgba(19, 20, 14, 0.4) 50%, rgba(19, 20, 14, 1) 100%);
}

.glass-panel {
    background: rgba(31, 32, 26, 0.7);
    backdrop-filter: blur(20px);
}

.text-glow {
    text-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
}

.reveal-mask {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* ── 4. Scan Line & Animation ── */
.scan-line {
    height: 2px;
    background: rgba(202, 243, 0, 0.5);
    box-shadow: 0 0 10px rgba(202, 243, 0, 0.8);
    position: absolute;
    width: 100%;
    z-index: 30;
    top: -10px;
    pointer-events: none;
}

.scan-anim {
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

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

/* ── 5. Carousel ── */
.carousel-item {
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1), opacity 0.6s ease;
}

.monitor-frame {
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(202, 243, 0, 0.05);
}

.secondary-monitor {
    filter: grayscale(0.5) contrast(1.2);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.secondary-monitor:hover {
    filter: grayscale(0) contrast(1);
    border-color: rgba(202, 243, 0, 0.5) !important;
    box-shadow: 0 0 30px rgba(202, 243, 0, 0.1);
}

/* ── 6. Heartbeat Animation ── */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.animate-heartbeat {
    animation: heartbeat 4s ease-in-out infinite;
    transform-origin: center;
}

/* ── 7. Mobile Menu Transitions ── */
.tray-closed {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-20px);
}

#mobile-overlay {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 8. Custom Hero Title Styles ── */
.custom-hero {
    --box-bg: rgba(212, 255, 0, 0.05);
    --eyebrow-color: #d4ff00;
    --grad-start: #d4ff00;
    --grad-end: #4a501b;
    --crosshair-color: rgba(212, 255, 0, 0.6);

    font-family: "Rajdhani", sans-serif;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
}

html.light .custom-hero {
    --box-bg: rgba(14, 116, 144, 0.08);
    --eyebrow-color: #1e293b;
    --grad-start: #f97316;
    --grad-end: #0e7490;
    --crosshair-color: rgba(14, 116, 144, 0.6);
}

.custom-hero .eyebrow {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--eyebrow-color);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.custom-hero .title-group {
    display: grid;
    grid-template-areas: "overlap";
    place-items: center;
    font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    position: relative;
    text-transform: none;
}

/* Breathing Glow */
.custom-hero .title-group::before {
    content: "";
    grid-area: overlap;
    width: calc(100% + 140px);
    height: calc(100% + 120px);
    background: linear-gradient(90deg,
            var(--grad-start),
            var(--grad-end));
    border-radius: 100px;
    filter: blur(40px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: breathe-glow 3s ease-in-out infinite alternate;
}

@keyframes breathe-glow {
    0% {
        opacity: 0.14;
        transform: scale(0.95);
        filter: blur(40px);
    }

    100% {
        opacity: 0.25;
        transform: scale(1.1);
        filter: blur(55px);
    }
}

.custom-hero .bg-layer {
    grid-area: overlap;
    display: block;
    z-index: 1;
}

.custom-hero .line-box {
    display: block;
    background-color: var(--box-bg);
    color: transparent;
    padding: 0.05em 0.25em;
    width: max-content;
    margin: 0 auto;
    position: relative;
    transition:
        background-color 0.5s ease,
        border-color 0.5s ease;
}

html.light .custom-hero .line-box {
    border-radius: 6px;
    border: 1px solid rgba(14, 116, 144, 0.2);
}

/* Crop Marks — NEON ALWAYS */
.custom-hero .line-box::before,
.custom-hero .line-box::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background:
        linear-gradient(var(--crosshair-color),
            var(--crosshair-color)) center/1px 100% no-repeat,
        linear-gradient(var(--crosshair-color),
            var(--crosshair-color)) center/100% 1px no-repeat;
    pointer-events: none;
    animation: crosshair-twinkle 3s ease-in-out infinite alternate;
}

@keyframes crosshair-twinkle {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.custom-hero .line-box.top::before {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.custom-hero .line-box.top::after {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    animation-delay: 0.5s;
}

.custom-hero .line-box.bottom::before {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
    animation-delay: 1s;
}

.custom-hero .line-box.bottom::after {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    animation-delay: 1.5s;
}

/* Text Gradient Sweep */
.custom-hero .text-layer {
    grid-area: overlap;
    display: block;
    width: max-content;
    z-index: 2;

    background: linear-gradient(110deg,
            var(--grad-start) 0%,
            var(--grad-end) 30%,
            #ffffff 50%,
            var(--grad-end) 70%,
            var(--grad-start) 100%);
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: light-sweep 6s linear infinite;
}

/* Light mode: orange → teal sweep on slate base */
html.light .custom-hero .text-layer {
    background: linear-gradient(110deg,
            #f97316 0%,
            #1e293b 30%,
            #0e7490 50%,
            #1e293b 70%,
            #f97316 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes light-sweep {
    from {
        background-position: 100% center;
    }

    to {
        background-position: -100% center;
    }
}

.custom-hero .line-text {
    display: block;
    padding: 0.05em 0.25em;
    width: max-content;
    margin: 0 auto;
}

/* ── 9. Animated Magic Border Button ── */
.magic-btn-section {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    background: black;
}

.magic-btn-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    width: auto;
    padding: 1px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease, background 0.5s ease;
}

.magic-btn-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    aspect-ratio: 1;
    background: conic-gradient(from 0deg,
            transparent 60%,
            rgba(255, 255, 255, 0.8) 100%);
    transform-origin: center;
    animation: spin-light 3s linear infinite;
}

@keyframes spin-light {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.magic-btn-inner {
    position: relative;
    z-index: 1;
    background-color: #1a1a1a;
    border-radius: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    transition: background-color 0.2s ease-in-out;
}

.magic-btn-container:hover .magic-btn-inner {
    background-color: #d4ff00;
}

.magic-btn-text {
    color: #d4ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease-in-out;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.875rem;
    white-space: nowrap;
}

.magic-btn-container:hover .magic-btn-text {
    color: #0a0a0a;
}

.magic-btn-container:hover .magic-btn-text {
    transform: scale(1.05);
}

/* ── 10. Synthetic Accordion ── */
#synthetic .synth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 767px) {
    #synthetic .synth-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky image column — stays put when accordions expand */
#synthetic .synth-image-col {
    position: sticky;
    top: 6rem;
    align-self: start;
}

/* Accordion wrapper */
.synth-accordion {
    border: 1px solid rgba(68, 73, 50, 0.35);
    border-radius: 0.25rem;
    background: rgba(31, 32, 26, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.synth-accordion:hover {
    border-color: rgba(202, 243, 0, 0.2);
    background: rgba(31, 32, 26, 0.7);
}

.synth-accordion[open] {
    border-color: rgba(202, 243, 0, 0.3);
    box-shadow: 0 0 30px rgba(202, 243, 0, 0.04), inset 0 1px 0 rgba(202, 243, 0, 0.08);
    background: rgba(26, 27, 19, 0.75);
}

/* Summary row */
.synth-accordion summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.3s ease;
}

.synth-accordion summary::-webkit-details-marker {
    display: none;
}

.synth-accordion summary::marker {
    display: none;
    content: '';
}

.synth-accordion summary:hover {
    background: rgba(202, 243, 0, 0.03);
}

.synth-accordion summary:focus-visible {
    outline: 2px solid rgba(202, 243, 0, 0.5);
    outline-offset: -2px;
}

/* Numbered badge */
.synth-num {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(68, 73, 50, 0.3);
    background: rgba(19, 20, 14, 0.6);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #caf300;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.synth-accordion[open] .synth-num {
    background: rgba(202, 243, 0, 0.08);
    border-color: rgba(202, 243, 0, 0.25);
}

/* Summary title */
.synth-title {
    flex: 1;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e4e3d9;
}

/* Chevron indicator */
.synth-chevron {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(202, 243, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.synth-accordion[open] .synth-chevron {
    transform: rotate(180deg);
    color: rgba(202, 243, 0, 0.9);
}

/* Smooth open/close via grid row animation */
.synth-body-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.synth-accordion[open] .synth-body-wrap {
    grid-template-rows: 1fr;
}

.synth-body-inner {
    overflow: hidden;
}

.synth-body-content {
    padding: 0 1.5rem 1.5rem 4.5rem;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #c5c9ac;
}

/* Decorative top-line accent on open */
.synth-accordion[open]::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202, 243, 0, 0.3) 20%, rgba(202, 243, 0, 0.3) 80%, transparent);
}

/* ── 11. SLW Modal System ── */
.slw-trigger {
    color: #caf300;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.slw-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202, 243, 0, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slw-trigger:hover::after {
    transform: scaleX(1);
}

.slw-trigger:hover {
    color: #d4ff00;
    text-shadow: 0 0 14px rgba(212, 255, 0, 0.3);
}

.slw-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slw-modal-overlay.slw-open {
    opacity: 1;
    visibility: visible;
    background: rgba(13, 14, 9, 0.7);
    backdrop-filter: blur(12px);
}

.slw-modal-card {
    position: relative;
    max-width: 700px;
    width: 90vw;
    max-height: 90vh;
    padding: 3rem 2.5rem;
    background: linear-gradient(165deg, rgba(22, 23, 16, 0.95) 0%, rgba(10, 10, 6, 0.98) 100%);
    border: 1px solid rgba(202, 243, 0, 0.12);
    border-radius: 0.25rem;
    box-shadow:
        0 0 80px rgba(202, 243, 0, 0.04),
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(202, 243, 0, 0.08);
    transform: translateY(30px) scale(0.96);
    opacity: 0;
    transition: all 0.55s cubic-bezier(0.2, 0, 0, 1);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(202, 243, 0, 0.2) transparent;
}

.slw-modal-overlay.slw-open .slw-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Video Modal Specifics */
.modal-card-video {
    max-width: 1100px !important;
    width: 95vw !important;
    padding: 0 !important;
    background: black !important;
    overflow: hidden !important;
}

.slw-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slw-video-wrapper iframe,
.slw-video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slw-video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.slw-video-close:hover {
    background: #caf300;
    color: black;
    transform: scale(1.1);
}

/* Accent glow line at top of card */
.slw-modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202, 243, 0, 0.5), transparent);
}

/* Corner crop marks on the modal */
.slw-modal-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 0 0 / 16px 1px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 0 0 / 1px 16px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 100% 0 / 16px 1px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 100% 0 / 1px 16px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 0 100% / 16px 1px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 0 100% / 1px 16px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 100% 100% / 16px 1px no-repeat,
        linear-gradient(rgba(202, 243, 0, 0.25), rgba(202, 243, 0, 0.25)) 100% 100% / 1px 16px no-repeat;
}

/* Lightbox Modal Specifics */
.modal-card-lightbox {
    max-width: 95vw !important;
    width: auto !important;
    max-height: 95vh !important;
    padding: 1.5rem !important;
    background: rgba(0, 0, 0, 0.95) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(202, 243, 0, 0.2) !important;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(202, 243, 0, 0.1);
}

.slw-modal-logo {
    display: block;
    height: 300px;
    width: auto;
    margin: 0 0 2rem 0;
    filter: drop-shadow(0 0 20px rgba(202, 243, 0, 0.1));
    animation: slw-logo-breathe 4s ease-in-out infinite alternate;
}

@keyframes slw-logo-breathe {
    0% {
        filter: drop-shadow(0 0 12px rgba(202, 243, 0, 0.06));
    }

    100% {
        filter: drop-shadow(0 0 28px rgba(202, 243, 0, 0.15));
    }
}

.slw-modal-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e4e3d9;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.slw-modal-heading span {
    color: #caf300;
}

/* Thin separator with glow */
.slw-modal-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto 1.5rem auto;
    background: rgba(202, 243, 0, 0.4);
    box-shadow: 0 0 12px rgba(202, 243, 0, 0.15);
}

.slw-modal-body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    color: #c5c9ac;
    text-align: left;
    border-left: 2px solid #caf300;
    padding-left: 1.25rem;
}

.slw-modal-body p {
    margin-bottom: 1.25rem;
}

.slw-modal-body p:last-child {
    margin-bottom: 0;
}

/* --- Form Styles --- */
.slw-form-group {
    margin-bottom: 1.5rem;
}

.slw-form-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #caf300;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.slw-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slw-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(202, 243, 0, 0.25);
    border-radius: 0.125rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.slw-input::placeholder {
    color: rgba(228, 227, 217, 0.4);
}

.slw-input:focus {
    outline: none !important;
    border-color: #caf300 !important;
    background: rgba(202, 243, 0, 0.08) !important;
    box-shadow: 0 0 20px rgba(202, 243, 0, 0.15) !important;
    --tw-ring-offset-shadow: 0 0 #0000 !important;
    --tw-ring-shadow: 0 0 #0000 !important;
    --tw-ring-color: transparent !important;
}

.slw-input-icon {
    position: absolute;
    right: 0.75rem;
    color: #caf300;
    opacity: 0.7;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.slw-input-icon:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(202, 243, 0, 0.5));
}

.slw-btn-primary {
    width: 100%;
    background: #caf300;
    color: #171e00;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.875rem;
    border-radius: 0.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.slw-btn-primary:hover {
    background: #d4ff00;
    box-shadow: 0 0 20px rgba(202, 243, 0, 0.25);
    transform: translateY(-1px);
}

.slw-btn-primary:active {
    transform: translateY(0);
}

/* --- List Styles --- */
.slw-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slw-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(202, 243, 0, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.125rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.slw-contact-item:hover {
    background: rgba(202, 243, 0, 0.05);
    border-color: rgba(202, 243, 0, 0.2);
    transform: translateX(4px);
}

.slw-contact-icon {
    color: #caf300;
    font-size: 1.25rem;
}

.slw-contact-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #caf300;
    opacity: 0.6;
    margin-bottom: 0.125rem;
}

.slw-contact-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #e4e3d9;
}

/* --- Legal Text --- */
.slw-legal-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.8;
    color: #c5c9ac;
    white-space: pre-line;
}

.slw-modal-contact {
    display: inline-block;
    color: #caf300;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.slw-modal-contact::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: rgba(202, 243, 0, 0.4);
}

/* Close button */
.slw-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(68, 73, 50, 0.3);
    background: rgba(19, 20, 14, 0.6);
    color: rgba(197, 201, 172, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slw-modal-close:hover {
    border-color: rgba(202, 243, 0, 0.3);
    color: #caf300;
    background: rgba(202, 243, 0, 0.06);
}

/* Mobile tightening */
@media (max-width: 640px) {
    .slw-modal-card {
        padding: 1.5rem 1.25rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .slw-modal-logo {
        width: 80% !important;
        height: auto !important;
        margin-bottom: 1.25rem;
    }

    .slw-modal-heading {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .slw-modal-divider {
        margin-bottom: 1rem;
    }

    .slw-modal-body {
        font-size: 1rem;
    }
}

/* ── 12. About Section ── */
.about-hud-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.take-number {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(202, 243, 0, 0.18);
    pointer-events: none;
    user-select: none;
    position: absolute;
    top: -0.15em;
    right: -0.1em;
}

.take-card {
    position: relative;
    overflow: hidden;
    background: rgba(19, 20, 14, 0.6);
    border: 1px solid rgba(68, 73, 50, 0.4);
    padding: 2.5rem 2rem 2rem;
    transition: border-color 0.4s ease, background 0.4s ease;
    border-radius: 0.25rem;
}

.take-card:hover {
    border-color: rgba(202, 243, 0, 0.25);
    background: rgba(26, 27, 19, 0.8);
}

.take-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #caf300;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.take-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(202, 243, 0, 0.2);
}

.take-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e4e3d9;
    margin-bottom: 1.25rem;
}

.take-body {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #c5c9ac;
}

.about-heading-line {
    display: block;
    overflow: hidden;
}

.subhead-bar {
    border-left: 2px solid #caf300;
    padding-left: 1.25rem;
    margin-top: 2.5rem;
}

@keyframes about-scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    95% {
        opacity: 0.6;
    }

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

.about-scan-line {
    height: 1px;
    background: rgba(202, 243, 0, 0.35);
    box-shadow: 0 0 8px rgba(202, 243, 0, 0.5);
    position: absolute;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    animation: about-scan 6s linear infinite;
}

/* ── 12. Utility: Highlighter ── */
.highlighter-brand {
    background-color: #d4ff00;
    color: #000000;
    padding: 0 4px;
    font-weight: 700;
}

/* ── 13. Interactive Lens Roller ── */
.fui-roller {
    position: relative;
    width: 220px;
    height: 150px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.fui-selector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 30px;
    border-top: 1px solid rgba(202, 243, 0, 0.2);
    border-bottom: 1px solid rgba(202, 243, 0, 0.2);
    pointer-events: none;
    z-index: 3;
}

.fui-track {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fui-item {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    flex-shrink: 0;
    font-family: inherit; /* will use font-headline */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #caf300;
    text-align: right;
    padding: 0;
    box-sizing: border-box;
    transition: font-size 0.1s ease, opacity 0.1s ease, font-weight 0.1s ease;
}

.fui-track-left {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fui-item-left {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    font-family: inherit; /* will use font-headline */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #caf300;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
    transition: font-size 0.1s ease, opacity 0.1s ease, font-weight 0.1s ease;
}