@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Poly:ital@0;1&display=swap');

:root{

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

    --btn-color: #fdfdfd;
    --btn-bg: #171715;
    --btn-bg-gradient: linear-gradient(135deg, #1f1f1f 0%, #2f2f2f 60%, #3a3a3a 100%);
    --btn-border: #2f2f2f;
    --btn-hover-bg: linear-gradient(135deg, #57916f 0%, #467b5c 100%);
    --btn-hover-border: #467b5c;
    --btn-secondary-bg: rgba(255, 255, 255, 0.72);
    --btn-secondary-text: #171715;
    --btn-secondary-border: #dfdfda;

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

    --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: rgba(252, 252, 250, 0.78);
    --hero-gradient: #fcfcfa;
    --hero-bg-img: url("../assets/images/background/dots-dark.svg");

}

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

    --btn-color: #000000;
    --btn-bg: #ffffff;
    --btn-bg-gradient: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    --btn-border: #ffffff;
    --btn-hover-bg: linear-gradient(135deg, #57916f 0%, #467b5c 100%);
    --btn-hover-border: #467b5c;

    --header-link-hover: #ffffff;
    --header-link-hover-bg: #8a8a8a5e;

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

    --dropdown-bg: #171717;
    --dropdown-hover-bg: #2d2d2ddb;

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

    --hr-color: #e1e1e195;

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

    --header-bg: #232323a5;

    --hero-gradient: #000;
    --hero-bg-img: url("../assets/images/background/dots.svg");

}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

body.modal-open {
    overflow: hidden;
}

header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: visible;
    transition: width 0.3s ease, height 0.3s ease;
}

.landing-navbar-shell {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(23, 23, 21, 0.07) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-radius: 999px !important;
    overflow: hidden !important;
}

.landing-navbar-wordmark {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #171715;
}

.landing-navbar-track {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.landing-navbar-main {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 14px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.landing-navbar-brand {
    flex-shrink: 0;
    margin-right: 8px;
}

.landing-navbar-content {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.landing-navbar-cta-wrap {
    flex-shrink: 0;
    margin-left: 0;
    align-self: stretch;
    display: flex;
}

.landing-navbar-cta {
    position: relative;
    min-height: 60px;
    height: 100%;
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 999px;
    box-shadow: none;
    margin-right: 0;
    overflow: visible;
}

.landing-cta-sparkles {
    position: absolute;
    inset: -8px -10px;
    pointer-events: none;
}

.landing-cta-sparkle {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.78;
    transform-origin: center;
    animation: landingSparkleFloat 2.4s ease-in-out infinite;
}

.landing-cta-sparkle-a {
    top: 10%;
    left: 11%;
    font-size: 0.88rem;
    animation-delay: 0s;
}

.landing-cta-sparkle-b {
    top: 14%;
    right: 18%;
    font-size: 0.68rem;
    animation-delay: 0.6s;
}

.landing-cta-sparkle-c {
    right: 9%;
    bottom: 18%;
    font-size: 0.78rem;
    animation-delay: 1.1s;
}

@media not all and (min-width: 1024px) {
    .landing-navbar-track {
        display: block;
        height: auto;
    }

    .landing-navbar-main {
        display: flex;
        align-items: center;
        min-height: 60px;
        width: 100%;
        padding: 8px 48px 8px 12px;
    }

    .landing-navbar-cta-wrap {
        display: none;
    }

    .landing-navbar-shell {
        min-height: 60px;
        height: auto !important;
        border-radius: 24px !important;
        overflow: visible !important;
    }

    .landing-navbar-brand {
        min-height: 44px;
        margin-right: 0;
    }

    .landing-navbar-wordmark {
        font-size: 0.98rem;
    }
}

.landing-navbar-cta:hover {
    transform: translateY(0);
    box-shadow: none;
}

.landing-navbar-cta:hover .landing-cta-sparkle {
    animation-duration: 1.35s;
    opacity: 1;
}

.landing-app-strip {
    padding: 10px 14px;
    border: 1px solid rgba(228, 228, 231, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(23, 23, 21, 0.05);
}

.landing-app-logo {
    opacity: 0.82;
}

/* Dynamic navbar transitions */
header#main-header {
    transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                background-color 0.3s ease,
                border-radius 0.4s ease,
                top 0.4s ease;
}

header#main-header.header-shrunk {
    max-width: 600px !important;
    height: 48px !important;
    top: 10px;
}
header#main-header.header-shrunk .logo-brand-container {
    height: 32px !important;
}

header#main-header.header-shrunk .landing-navbar-main,
header#main-header.header-shrunk .collapsible-header {
    height: 100% !important;
}

header#main-header.header-shrunk .landing-navbar-cta {
    min-height: 48px;
    padding-left: 20px;
    padding-right: 20px;
}

.tw-dark header#main-header.header-shrunk {
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.06);
}

header#main-header.header-shrunk .header-links {
    font-size: 0.85rem;
    padding: 5px 10px;
}

header#main-header.header-shrunk .collapsible-header nav {
    gap: 0.5rem;
}

header#main-header .header-links,
header#main-header .collapsible-header nav {
    transition: gap 0.4s ease, font-size 0.3s ease, padding 0.3s ease;
}

header#main-header.header-shrunk .nav-hide-on-shrink {
    max-width: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-hide-on-shrink {
    transition: max-width 0.3s ease, max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    max-width: 500px;
    max-height: 100px;
    opacity: 1;
}

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

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


.header-links {
    position: relative;
    display: flex;
    align-items: center;
    min-width: fit-content;
    padding: 8px 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-content-stack {
    justify-content: center;
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
    gap: 0;
    padding-top: clamp(1rem, 2.8vh, 2rem);
    padding-bottom: 0;
}

.hero-platform-strip {
    width: 100%;
    max-width: 800px;
    margin-top: clamp(1.25rem, 2.6vh, 2rem);
}

.hero-title {
    font-size: clamp(3.8rem, 8vw, 5.9rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-copy {
    margin-top: clamp(1rem, 2.2vh, 1.5rem);
}

.hero-actions {
    margin-top: clamp(1.4rem, 3vh, 2.1rem);
}

.hero-meta {
    margin-top: 0.9rem;
}

.hero-meta-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #e8e8e3;
    background: rgba(255, 255, 255, 0.88);
    color: #4b5563 !important;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(23, 23, 21, 0.04);
}

.hero-meta-point {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.hero-meta-sep {
    color: #c1c5cc;
}

.micro-heading {
    color: #6b7280 !important;
    letter-spacing: 0.18em;
    font-weight: 700 !important;
}

.hero-bg-gradient{
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0) 42%),
        linear-gradient(180deg, var(--hero-gradient) 16%, rgba(252,252,250,0.58) 62%, var(--hero-gradient) 100%);
}

.feature-pillars-wrap {
    max-width: 1180px;
}

.feature-pillars-subtitle {
    max-width: 680px;
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
}

.feature-pillars-grid {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-pillar-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
}

.feature-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(23, 23, 21, 0.08);
    border-color: #e1e1e1;
}

.feature-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(23,23,21,0.12) 0%, rgba(23,23,21,0.32) 50%, rgba(23,23,21,0.12) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.feature-pillar-card:hover::before {
    transform: scaleX(1);
}

.capability-list-item {
    transition: transform 0.2s ease, color 0.2s ease;
}

.feature-pillar-card:hover .capability-list-item {
    transform: translateX(2px);
    color: #111827;
}

.feature-pillar-card:hover .capability-list-icon {
    color: #111827;
}

.feature-pillar-kicker {
    color: #8b93a1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.feature-pillar-title {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 600;
    color: #111827;
}

.feature-pillar-copy {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 30ch;
}

.feature-pillar-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
    margin-top: auto;
    padding-top: 4px;
}

.feature-point {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f8f8f6;
    border: 1px solid #ecece7;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #374151;
    font-weight: 500;
}

.capability-list-icon {
    width: 16px;
    font-size: 14px;
    line-height: 1.4;
    color: #111827;
    margin-top: 2px;
    flex-shrink: 0;
}

.landing-zoom-card {
    transform-origin: center;
    will-change: transform, box-shadow;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.landing-zoom-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 44px rgba(23, 23, 21, 0.1);
}

.landing-zoom-card:hover .tw-h-11,
.landing-zoom-card:hover .tw-text-4xl {
    transform: scale(1.06);
}

.landing-zoom-card .tw-h-11,
.landing-zoom-card .tw-text-4xl {
    transition: transform 0.22s ease;
}

.hero-meeting-line {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 1.32em;
    padding-bottom: 0.12em;
    overflow: hidden;
    width: 100%;
}

.hero-typed-word {
    position: relative;
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    color: #111827;
    transform: translateY(0);
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s ease;
}

.hero-typed-word.is-swapping-out {
    opacity: 0;
    transform: translateY(-110%);
}

.hero-typed-word.is-swapping-in {
    opacity: 0;
    transform: translateY(110%);
}

.hero-typed-word.is-active {
    opacity: 1;
    transform: translateY(0);
}

.workflow-grid {
    position: relative;
}

.workflow-step-card {
    position: relative;
    min-height: 320px;
    padding: 28px 24px;
    border: 1px solid #e8e8e8;
    border-radius: 22px;
    background: #ffffff;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.workflow-step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 51px;
    right: -32px;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, rgba(23, 23, 21, 0.14), rgba(23, 23, 21, 0.34));
    opacity: 0.85;
    transition: transform 0.28s ease, background 0.28s ease, opacity 0.28s ease;
}

.workflow-step-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(23,23,21,0.08) 0%, rgba(23,23,21,0.28) 50%, rgba(23,23,21,0.08) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.workflow-step-badge {
    border: 1px solid #dfdfdb;
    background: #f8f8f6;
    color: #4b5563;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.workflow-step-number {
    color: inherit;
    transition: color 0.28s ease;
}

.workflow-step-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 44px rgba(23, 23, 21, 0.1);
    border-color: #ddddda;
}

.workflow-step-card:hover::before {
    transform: scaleX(1);
}

.workflow-step-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 270px;
    align-self: stretch;
}

.workflow-step-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 500;
    transition: transform 0.22s ease, color 0.22s ease;
    width: 100%;
    text-align: left;
}

.workflow-step-points i {
    font-size: 0.92rem;
    color: #111827;
    margin-top: 3px;
    flex-shrink: 0;
}

.workflow-step-points span {
    display: block;
    flex: 1;
    text-align: left;
}

.workflow-step-card:hover .workflow-step-points li {
    transform: translateX(2px);
    color: #111827;
}

.workflow-step-card:hover .workflow-step-badge {
    transform: translateY(-2px) scale(1.04);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(23, 23, 21, 0.14);
}

.workflow-step-card:nth-child(1):hover .workflow-step-badge {
    background: #111827;
    border-color: #111827;
}

.workflow-step-card:nth-child(2):hover .workflow-step-badge {
    background: #1f7668;
    border-color: #1f7668;
}

.workflow-step-card:nth-child(3):hover .workflow-step-badge {
    background: #8a5cf6;
    border-color: #8a5cf6;
}

.workflow-step-card:nth-child(1):hover:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.18), rgba(31, 118, 104, 0.52));
    transform: translateX(4px);
}

.workflow-step-card:nth-child(2):hover:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(31, 118, 104, 0.2), rgba(138, 92, 246, 0.54));
    transform: translateX(4px);
}

.feature-pillars-grid .feature-pillar-card:nth-child(1) { animation: featureCardIn 0.45s ease both; animation-delay: 0.04s; }
.feature-pillars-grid .feature-pillar-card:nth-child(2) { animation: featureCardIn 0.45s ease both; animation-delay: 0.10s; }
.feature-pillars-grid .feature-pillar-card:nth-child(3) { animation: featureCardIn 0.45s ease both; animation-delay: 0.16s; }
.feature-pillars-grid .feature-pillar-card:nth-child(4) { animation: featureCardIn 0.45s ease both; animation-delay: 0.22s; }
.feature-pillars-grid .feature-pillar-card:nth-child(5) { animation: featureCardIn 0.45s ease both; animation-delay: 0.28s; }
.feature-pillars-grid .feature-pillar-card:nth-child(6) { animation: featureCardIn 0.45s ease both; animation-delay: 0.34s; }

@keyframes featureCardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landingSparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(0.86) rotate(0deg);
        opacity: 0;
    }
    35% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(-1px) scale(1.08) rotate(10deg);
        opacity: 1;
    }
    70% {
        opacity: 0.78;
    }
}

@media (max-width: 1024px) {
    .workflow-step-card:not(:last-child)::after {
        display: none;
    }

    .feature-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-pillars-grid {
        grid-template-columns: 1fr;
    }
}


.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;
}


#dashboard {
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(58deg);
    transition: transform 0.5;
}

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

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

.btn{
    padding: 11px 20px;
    width: max-content;
    min-height: 44px;
    border-radius: 999px;
    color: var(--btn-color);
    background: var(--btn-bg-gradient);
    border: 1px solid var(--btn-border);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    gap: 8px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover{
    transform: translateY(-1px);
    background: var(--btn-hover-bg);
    border-color: var(--btn-hover-border);
    box-shadow: 0 12px 28px rgba(70, 123, 92, 0.22);
}

.btn:disabled{
    cursor: default;
}

.btn-secondary{
    color: var(--btn-secondary-text);
    background: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-border);
    box-shadow: inset 0 0 0 0 #171715;
}

.btn-secondary:hover{
    color: #ffffff;
    background: #171715;
    border-color: #171715;
    box-shadow: 0 10px 24px rgba(23, 23, 21, 0.12);
}

.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;
}

.carousel-img img {
    opacity: 1;
}

#dashboard-container {
    margin-top: clamp(1.75rem, 3.8vh, 2.75rem);
}

@media (max-height: 860px) and (min-width: 1024px) {
    .hero-section,
    .hero-bg-gradient {
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(3.35rem, 7vw, 4.8rem);
        line-height: 0.98;
    }

    .hero-copy {
        max-width: 500px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-platform-strip {
        margin-top: 1rem;
    }

    #dashboard-container {
        margin-top: 1.5rem;
    }
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


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

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


.animated-border::after{
    content: '';
    position: absolute;
    inset: 0;
    width: auto;
    height: 100%;
    border-radius: inherit; 
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(245,244,240,0.95) 100%);
    border: 1px solid rgba(226, 225, 219, 0.8);
    filter: none;
    opacity: 1;
    z-index: -2;
    pointer-events: none;
    box-shadow: 0 20px 50px rgba(23, 23, 21, 0.08);
}

.animated-border::before{
    display: none;
}

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

.footer-shell {
    padding: 5rem 10% 2.75rem;
}

.footer-main {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.55fr);
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
}

.footer-brand-logo {
    width: 34px;
    height: 34px;
}

.footer-brand-wordmark {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-brand-copy {
    margin: 0;
    color: #5f5d56;
    line-height: 1.7;
    max-width: 28ch;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.25rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 22, 20, 0.08);
    border-radius: 999px;
    color: #3a3833;
    background: rgba(255, 255, 255, 0.74);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 22, 20, 0.16);
    background: #ffffff;
    color: #111111;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.footer-group-title {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a877f;
}

.footer-group-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-bottom {
    max-width: 1120px;
    margin: 2.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(22, 22, 20, 0.08);
    color: #76736b;
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-link {
        font-size: 0.7rem;
    }

    .footer-shell {
        padding: 4rem 6% 2.25rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .footer-brand {
        max-width: none;
        align-items: center;
        text-align: center;
    }

    .footer-brand-copy {
        max-width: 32ch;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        text-align: center;
    }

    .footer-link-group,
    .footer-group-links {
        align-items: center;
    }

    .hero-content-stack {
        justify-content: center;
        max-width: 100%;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.6rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.6rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
    }

    .hero-meeting-line {
        min-height: 1.36em;
        padding-bottom: 0.14em;
    }

    .hero-typed-word {
        min-width: 0;
        width: 100%;
        white-space: normal;
    }

    .hero-platform-strip {
        margin-top: 2rem;
    }

    .feature-pillars-subtitle {
        font-size: 1rem;
    }

    .feature-pillar-card {
        min-height: 0;
        padding: 22px;
    }
}

.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: 18px 20px;
    width: 100%;
    border: none;
    border-radius: 16px;
    text-align: left;
    outline: none;
    transition: background-color 0.22s ease, color 0.22s ease;
}

.faq-accordion:hover {
    background: #f7f7f4;
}

.faq .content {
    padding: 0px 20px;
    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: 76px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        opacity: 0;
        height: 0vh;
        min-height: 0vh;
        width: min(92vw, 420px);
        justify-content: space-between;
        padding: 18px 16px 22px;
        place-items: center;
        text-align: center;
        background-color: var(--header-bg);
        overflow-y: auto;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        box-shadow: 0 18px 42px rgba(23, 23, 21, 0.14);
        pointer-events: none;
        z-index: 45;
    }

    header .collapsible-header nav {
        width: 100%;
        margin-top: 8px;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    header .collapsible-header .header-links,
    header .collapsible-header #nav-dropdown-toggle-0 {
        justify-content: center;
        width: 100%;
        max-width: none;
        padding-top: 12px;
        padding-bottom: 12px;
        border-radius: 14px;
    }

    .nav-hide-on-shrink {
        width: 100%;
        max-width: none;
        max-height: none;
    }

    #nav-dropdown-list-0 {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        display: flex;
        flex-direction: column;
        width: 100% !important;
        min-width: 0 !important;
        height: 0 !important;
        margin-top: 10px;
        border-radius: 18px;
        padding: 0;
        overflow: hidden;
        box-shadow: none;
    }

    #nav-dropdown-list-0[data-open="true"] {
        height: auto !important;
        padding: 12px;
        box-shadow: 0 12px 28px rgba(23, 23, 21, 0.08);
    }

    #nav-dropdown-list-0 > div {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
    }

    #collapse-btn {
        top: 50% !important;
        right: 14px !important;
        transform: translateY(-50%);
    }

    .workflow-step-card {
        min-height: 0;
    }
}
