@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('integrations-marquee.css');
@import url('comparison-table.css');

:root {

    --primary-text-color: #000;
    --bg-color: #ffffff;

    --btn-color: #fdfdfd;
    /* button color*/
    --btn-bg: #000;
    /* button bg color*/


    --header-link-hover: #000000;
    --header-link-hover-bg: #bababa36;

    --input-hover-bd-color: #232323;

    --dropdown-bg: #f3f4f6;
    --dropdown-hover-bg: #dddddd84;

    --faq-h-text: #0e0e0e;
    --faq-content-text: #1e1e1e;

    --hr-color: #e5e7eb;

    --footer-link: #282828;
    --footer-link-hover: #000;

    --header-bg: #edececa5;
    /* color: #312f2f; */
    --hero-gradient: #fcfcfc;
    --hero-bg-img: url("../assets/images/background/dots-dark.svg");
    
    --secondary-text-color: #4b5563; /* gray-600 */
}

.tw-dark {
    --primary-text-color: #fff;
    --bg-color: #03030A;

    --btn-color: #000;
    /* button color*/
    --btn-bg: #ffffff;
    /* button bg color*/

    --header-link-hover: #ffffff;
    --header-link-hover-bg: rgba(255, 255, 255, 0.1);
    --secondary-text-color: #9ca3af; /* gray-400 - Matches Bank-level encryption text */

    --input-hover-bd-color: #f8f8f8;

    --dropdown-bg: #000;
    --dropdown-hover-bg: #111;

    --faq-h-text: #efefef;
    --faq-content-text: #d4d4d4;

    --hr-color: #e1e1e195;

    --footer-link: #cfcfcf;
    --footer-link-hover: #ffffff;

    --header-bg: rgba(0, 0, 0, 0.1);

    --hero-gradient: #03030A;
    --hero-bg-img: none;

}


html {
    scroll-behavior: smooth;
    font-family: "Public Sans", sans-serif;
}

body.modal-open {
    overflow: hidden;
}

header {
    pointer-events: none;
    /* Let clicks pass through the gap between capsules */
}

header>div,
header>nav {
    pointer-events: auto;
    /* Re-enable clicks on the capsules themselves */
}

header>.collapsible-header {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 1rem;
}

/* Styles for the new dual capsules */
.nav-capsule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    padding: 0.25rem 1.25rem;
    border-radius: 9999px;
    background-color: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

hr {
    border-color: var(--hr-color);
    border-style: solid;
}

.animated-collapse {
    transition: width 0.3s ease;
}


.header-links {
    position: relative;
    display: flex;
    min-width: fit-content;
    padding: 4px 15px;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.5s, color 0.3s;
}

.header-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* color: var(--header-link-hover); */
    background-color: var(--header-link-hover-bg);
    transform: scale(40%);
    opacity: 0;
    border-radius: 8px;
    transition: all 300ms;
}

.header-links:hover {
    color: var(--header-link-hover);
}

.header-links:hover::after {
    transform: scale(100%);
    opacity: 1;
}

.hero-section {
    /* background-image: var(--hero-bg-img); */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
}

.hero-bg-gradient {
    background: linear-gradient(180deg, var(--hero-gradient) 23%, rgba(0, 0, 0, 0) 87%, var(--hero-gradient) 97%);
}


.gradient-text {
    background: rgb(215, 215, 215);
    background: linear-gradient(90deg, rgba(215, 215, 215, 1) 18%, rgba(136, 136, 136, 1) 71%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.15em;
    /* Fixes clipping of 'g' descenders */
    line-height: normal;
    /* Ensures the padding works as expected */
}


.purple-bg-grad {
    display: none;
}

.auth-grid-bg {
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.13) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 48px 48px, 24px 24px;
    background-position: 0 0, 12px 12px;
    animation: gridScroll 22s linear infinite;
    position: relative;
}

.auth-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(46,196,182,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.auth-grid-bg > * {
    position: relative;
    z-index: 1;
}

@keyframes gridScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 48px 48px;
    }
}

.auth-grid-mask {
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8) rotate(0deg) rotateX(70deg);
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 8px 15px;
    width: max-content;
    border-radius: 10px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}


.btn:disabled {
    cursor: default;
}

.input {
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    outline: none;
    min-width: 100px;
    border: 1px solid #979797;
    transition: border 0.3s;
}

.input:active,
.input:focus,
.input:focus-within {
    border: 1px solid var(--input-hover-bd-color) !important;
}

/* ------------------- scrollbar ------------- */
.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 20px;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 25px;
    /* background: #f7f4ed; */
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    border-radius: 25px;
}


/* ---------------- dropdown --------------------- */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    outline: none;
    /* background-color: #000; */
    /* border: 1px solid #ccc; */
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: var(--dropdown-bg);
    /* border: 1px solid #c9c9c9; */
    list-style-type: none;
    padding: 0;
    width: 100%;
    left: 0px;
    /* top: 105%; */
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: var(--dropdown-hover-bg);
}

/* -------------- carousel ------------------*/
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}

.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

.carousel-img {
    display: inline-block;
    margin: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ------ animated border ------- */

.animated-border {
    position: relative;
    overflow: visible;
}


.animated-border::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -100%;
    width: 30%;
    height: 100%;
    border-radius: inherit;
    /* background: linear-gradient(#6366f1 23%, rgba(124,190,255,0) 87%); */
    background-color: #6366f1;
    background-repeat: no-repeat;
    /* background-size: 200% 200%; */
    background-position: 0% 0%;
    filter: blur(1.5rem);
    opacity: 0.8;
    box-shadow: inset 0px 0px 20px 5px #6366f1;
    /* transform: rotate(90deg); */
    z-index: -2;
    pointer-events: none;
    animation: slide 10s ease-in-out infinite;

}

.animated-border::before {
    filter: blur(1.5rem);
    opacity: 0.3;
    will-change: transform;
}

@keyframes slide {
    0% {
        left: -100%;
        /* Start completely outside the left edge */
        right: 100%;
        /* End completely outside the right edge */
    }

    100% {
        left: 100%;
        /* Move completely outside the right edge */
        right: -100%;
        /* End completely outside the left edge */
    }
}

.footer-link {
    width: -moz-fit-content;
    width: fit-content;
    color: var(--footer-link);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--footer-link-hover);
}


/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: var(--faq-h-text);
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: var(--faq-content-text);
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}


@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        top: 60px;
        left: 0px;
        flex-direction: column;
        opacity: 0;
        height: 0vh;
        min-height: 0vh;
        /* height: 100dvh; */
        width: 100vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: center;
        text-align: center;
        background-color: var(--header-bg);
        /* color: #373636; */
        overflow-y: auto;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0px 2px 3px 2px #9f9f9f7c;
    }

    /* .header-links{
        color: var(--he);
    } */

}

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

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

.announcement {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    background-color: #141414;
    color: #FFFFFF !important;
    font-size: 1.125rem;
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 0;
}

.announcement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background: conic-gradient(from 0deg, transparent 0deg, #266d75 60deg, transparent 120deg);
    animation: rotate-bg 4s linear infinite;
    z-index: -2;
    pointer-events: none;
}

.announcement::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #080808;
    border-radius: inherit;
    z-index: -1;
}

.announcement-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #fff;
    font-size: 0.75rem;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

/* Coming Soon Glow Effect */
.announcement-tag::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle at center, #266d75 40%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
}

/* ── Lustre shimmer effect (mirrors ScrollX UI `lustre` prop) ─── */
@keyframes lustre-sweep {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.lustre-tag {
    background-image: linear-gradient(
        90deg,
        rgba(200,200,200,0.6) 0%,
        rgba(255,255,255,0.15) 30%,
        #ffffff 45%,
        rgba(255,255,255,0.9) 50%,
        #ffffff 55%,
        rgba(255,255,255,0.15) 70%,
        rgba(200,200,200,0.6) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: lustre-sweep 3s linear infinite;
}

/* --- Aceternity-style Background Dots (reverted to use div) --- */
.tw-dark body {
    background-color: #03030A;
}


/* --- Spotlight Background Effect (Artisan-style) --- */
#bg-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.spotlight-text {
    position: relative;
    background: radial-gradient(circle 150px at var(--mouse-x, -999px) var(--mouse-y, -999px),
            rgba(38, 109, 117, 0.4) 0%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: background 0.1s ease;
}

/* --- Custom Spacing Utilities (Fallback for static Tailwind build) --- */
.spacing-pt-huge {
    padding-top: 7rem !important;
    /* ~112px */
}

@media (max-width: 1024px) {
    .spacing-pt-huge {
        padding-top: 4rem !important;
        /* ~64px for mobile/tablet */
    }
}

.tw-dark .spotlight-text {
    background: radial-gradient(circle 150px at var(--mouse-x, -999px) var(--mouse-y, -999px),
            #00E5FF 0%,
            rgba(255, 255, 255, 0.8) 50%,
            var(--primary-text-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Hero Content Spacing --- */
/* Pushes the heading and everything below it down from the nav */
.tw-dark .hero-bg-gradient > div:not(.tw-absolute),
.hero-bg-gradient > div:not(.tw-absolute) {
    padding-top: 9rem !important; /* ~144px — was 5rem (80px) */
}

@media (max-width: 1024px) {
    .tw-dark .hero-bg-gradient > div:not(.tw-absolute),
    .hero-bg-gradient > div:not(.tw-absolute) {
        padding-top: 6rem !important;
    }
}

.refined-section-spacing {
    padding-top: 8rem !important;
    padding-bottom: 4rem !important;
}

.showcase-row:last-child {
    margin-bottom: 0 !important;
}

.headline-refined {
    font-size: 2.125rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    color: var(--primary-text-color);
}

.subheadline-refined {
    font-size: 1.75rem !important;
    /* lg equivalent */
    font-weight: 500 !important;
    line-height: 1.625 !important;
    color: #4b5563 !important;
    /* gray-600 */
}

.tw-dark .subheadline-refined {
    color: #9ca3af !important;
    /* gray-400 */
}

/* --- Capsule Toggle Styling --- */
.capsule-container {
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    display: inline-flex;
    gap: 4px;
}

.capsule-item {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    border: 1px solid transparent;
}

.capsule-item:hover {
    color: #FFFFFF;
}

.capsule-item.active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dot {
    display: none !important;
}

@media (max-width: 768px) {
    .refined-section-spacing {
        padding-top: 6rem !important;
        padding-bottom: 4rem !important;
    }

    .headline-refined {
        font-size: 1.75rem !important;
    }
}

/* --- Showcase Zig-Zag Layout --- */
.showcase-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transition: none !important;
    box-shadow: none !important;
    border: none !important;
}

.showcase-row:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-media {
    flex: 1;
    aspect-ratio: 16/9;
    min-height: 380px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: none !important;
    transition: all 0.4s ease;
}

.showcase-media:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.showcase-content {
    flex: 1.4;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
    position: relative;
}

.video-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.video-placeholder::after {
    content: 'DEMO VIDEO';
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
    font-weight: 600;
}

@media (max-width: 1024px) {

    .showcase-row,
    .showcase-row:nth-child(even) {
        flex-direction: column !important;
        gap: 2.5rem;
        margin-bottom: 8rem;
        text-align: center;
    }

    .showcase-media {
        width: 100%;
    }
}

/* ─── NEW SYNTA-STYLE SHOWCASE LAYOUT ─────────────────────────────────────── */

.showcase-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10%;
    position: relative;
}

.showcase-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 3.5rem 0;
    /* -4.3rem = 1rem (section tw-px-4) + 3.5rem (vertical-grid-line offset)
       This makes border lines touch exactly the vertical grid lines */
    margin: 0 -4.3rem -1px -4.3rem;
}

.showcase-section-label {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
    /* 4.3rem padding restores content alignment with vertical grid lines */
    padding: 1.2rem 4.3rem;
    position: relative; /* needed for absolute-positioned ::after */
}

.showcase-section-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Dashed bottom line — ALL showcase sections (section 1 has border-top:none so only this line shows) */
.showcase-section .showcase-section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 16px 1px;
    background-repeat: repeat-x;
}




.showcase-label-index {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

.showcase-label-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.showcase-row-new {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 0 4.3rem;
}

/* Zigzag: even sections flip to demo-left / text-right */
.showcase-section:nth-child(even) .showcase-row-new {
    flex-direction: row-reverse;
}


.showcase-text {
    flex: 30;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.showcase-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-top: 1.25rem;
    padding: 10px 24px !important;
    border-radius: 9999px !important;
    background: rgba(17, 68, 75, 0.9);
    border: none;
    box-shadow: inset 0 1px 0 rgba(46, 196, 182, 0.12);
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.showcase-link:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(17, 68, 75, 1);
    box-shadow: inset 0 1px 0 rgba(46, 196, 182, 0.25);
    transform: translateY(-1px);
}

.showcase-media-new {
    flex: 70;
    aspect-ratio: 16/9;
    min-height: 340px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1024px) {
    .showcase-row-new {
        flex-direction: column;
        gap: 2rem;
    }
    .showcase-text {
        max-width: 100%;
        flex: unset;
    }
    .showcase-media-new {
        flex: unset;
        width: 100%;
        min-height: 240px;
    }
    .showcase-section-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    /* At 1024px, vertical-grid-line is at calc(10%-1.5rem), so bleed = 1rem+1.5rem = 2.5rem */
    .showcase-section {
        margin: 0 -2.5rem -1px -2.5rem;
    }
    .showcase-section-label {
        padding: 1.2rem 2.5rem;
    }
    .showcase-row-new {
        padding: 0 2.5rem;
    }
}



/* Decorative Heading Section */
.decorative-heading-section {
    padding: 10rem 10% 2rem; /* Reduced bottom padding */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.line-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 0 4rem 0;
    padding: 0;
}

.dashed-tick-line {
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 16px 1px;
    background-repeat: repeat-x;
    position: relative;
    width: 100%;
}

.dashed-tick-line::before,
.dashed-tick-line::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 9px;
    background: rgba(255, 255, 255, 0.2);
}

.dashed-tick-line::before { left: 0; }
.dashed-tick-line::after { right: 0; }

.decorative-content {
    max-width: 1200px; /* Increased to ensure description fits in 2 lines */
}

.decorative-heading {
    font-size: 2.2rem; /* Reduced by ~1 unit from 2.8rem */
    font-weight: 600; /* Bolder as per image */
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    text-align: left;
}

.decorative-description {
    font-size: 1.8rem; /* Reduced from 2.3rem */
    font-weight: 400;
    color: var(--secondary-text-color);
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: left;
}

@media (max-width: 768px) {
    .decorative-heading {
        font-size: 2.25rem;
    }
    .line-container {
        padding: 0 2rem;
    }
}

/* Technical Grid Lines */
.vertical-grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(10% - 3.5rem); /* Increased gap from 2rem to 3.5rem */
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .vertical-grid-line {
        left: calc(10% - 1.5rem);
    }
}