/* ============================================================
   SIINTE HOME
   Visual system:
   - SaaS / Enterprise
   - Corporate
   - Depth / 3D
   - Motion
   - Responsive
   ============================================================ */

:root {

    --home-navy: #071A2F;
    --home-navy-2: #0B2942;
    --home-navy-3: #102F4D;

    --home-orange: #FF7A00;
    --home-orange-dark: #D95F00;
    --home-orange-soft: #FFF1E4;

    --home-white: #FFFFFF;
    --home-bg: #F5F8FB;
    --home-soft: #EEF3F7;

    --home-text: #071A2F;
    --home-muted: #334155;

    --home-line: #D9E2EC;

    --home-shadow-sm:
        0 8px 20px rgba(7, 26, 47, .07);

    --home-shadow-md:
        0 18px 45px rgba(7, 26, 47, .11);

    --home-shadow-lg:
        0 30px 80px rgba(7, 26, 47, .16);

    --home-shadow-3d:
        0 10px 15px rgba(7, 26, 47, .06),
        0 25px 45px rgba(7, 26, 47, .10),
        0 45px 80px rgba(7, 26, 47, .12);

    --home-radius-sm: 12px;
    --home-radius-md: 18px;
    --home-radius-lg: 26px;
    --home-radius-xl: 34px;

    --home-transition:
        280ms cubic-bezier(.2,.8,.2,1);

}


/* ============================================================
   BASE
   ============================================================ */

.siinte-home {

    font-family:
        "Plus Jakarta Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--home-text);
    overflow: hidden;
    background: var(--home-bg);

}

.siinte-home *,
.siinte-home *::before,
.siinte-home *::after {

    box-sizing: border-box;

}

.siinte-home a {

    text-decoration: none;

}

.siinte-home button,
.siinte-home input {

    font-family: inherit;

}


/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.siinte-reveal {

    opacity: 1;
    transform: none;

}

.js .siinte-reveal {

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.8,.2,1);

}

.js .siinte-reveal.is-visible {

    opacity: 1;
    transform: translateY(0);

}


/* ============================================================
   HERO
   ============================================================ */

.home-hero {

    position: relative;

    min-height: 730px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(255,122,0,.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(25,88,145,.12),
            transparent 30%
        ),
        var(--home-bg);

}

.home-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(7,26,47,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7,26,47,.035) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;

}

.home-hero-grid {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,122,0,.17),
            transparent 68%
        );

    filter: blur(15px);

    animation:
        homeGlow 7s ease-in-out infinite alternate;

}

@keyframes homeGlow {

    from {
        transform: scale(.92);
        opacity: .65;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }

}


.home-hero-container {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, .95fr);

    gap: 70px;

    align-items: center;

    padding-top: 90px;
    padding-bottom: 100px;

}


/* ============================================================
   HERO CONTENT
   ============================================================ */

.home-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 7px 13px 7px 8px;

    border:
        1px solid
        rgba(255,122,0,.22);

    border-radius: 999px;

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 8px 25px rgba(7,26,47,.05);

    color:
        var(--home-orange-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .11em;

}

.home-eyebrow-icon {

    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--home-orange);

    color: white;

    box-shadow:
        0 6px 14px rgba(255,122,0,.25);

}

.home-hero h1 {

    max-width: 760px;

    margin:
        24px 0 22px;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 800;

}

.home-gradient-text {

    display: block;

    color: var(--home-orange);

}

.home-hero-description {

    max-width: 650px;

    margin: 0;

    color: var(--home-muted);

    font-size: 17px;

    line-height: 1.8;

}

.home-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;

}


/* ============================================================
   BUTTONS
   ============================================================ */

.home-button {

    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 20px;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--home-transition),
        box-shadow var(--home-transition),
        background var(--home-transition);

}

.home-button:hover {

    transform: translateY(-3px);

}

.home-button-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            #FF8A1A,
            #F26B00
        );

    box-shadow:
        0 12px 24px rgba(255,122,0,.25),
        0 4px 8px rgba(7,26,47,.08);

}

.home-button-primary:hover {

    color: white;

    box-shadow:
        0 18px 34px rgba(255,122,0,.31),
        0 7px 12px rgba(7,26,47,.10);

}

.home-button-secondary {

    color: var(--home-navy);

    background: white;

    border:
        1px solid
        var(--home-line);

    box-shadow:
        var(--home-shadow-sm);

}

.home-button-secondary:hover {

    color: var(--home-orange-dark);

    border-color:
        rgba(255,122,0,.30);

    box-shadow:
        var(--home-shadow-md);

}

.home-button-dark {

    color: white;

    background:
        var(--home-navy);

    box-shadow:
        0 15px 35px rgba(7,26,47,.20);

}


/* ============================================================
   HERO TRUST
   ============================================================ */

.home-hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

}

.home-trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #53657A;

    font-size: 11px;
    font-weight: 700;

}

.home-trust-item i {

    color:
        var(--home-orange);

    font-size: 13px;

}


/* ============================================================
   HERO VISUAL
   ============================================================ */

.home-hero-visual {

    position: relative;

    min-height: 530px;

    display: grid;

    place-items: center;

    perspective: 1400px;

}

.home-dashboard-card {

    position: relative;
    z-index: 4;

    width: min(100%, 430px);

    padding: 28px;

    border-radius:
        var(--home-radius-xl);

    background:
        linear-gradient(
            145deg,
            #102F4D,
            #071A2F
        );

    color: white;

    box-shadow:
        0 25px 40px rgba(7,26,47,.18),
        0 45px 100px rgba(7,26,47,.20);

    transform:
        rotateY(-8deg)
        rotateX(4deg);

    transition:
        transform .6s cubic-bezier(.2,.8,.2,1);

}

.home-hero-visual:hover
.home-dashboard-card {

    transform:
        rotateY(-3deg)
        rotateX(2deg)
        translateY(-8px);

}

.dashboard-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}

.dashboard-label {

    display: block;

    margin-bottom: 7px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

}

.dashboard-top strong {

    font-size: 20px;

}

.dashboard-status {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.72);

    font-size: 9px;
    font-weight: 700;

}

.dashboard-status span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #5ED18A;

    box-shadow:
        0 0 10px #5ED18A;

}

.dashboard-main-icon {

    width: 82px;
    height: 82px;

    display: grid;
    place-items: center;

    margin:
        35px 0 20px;

    border-radius: 24px;

    color: var(--home-orange);

    background:
        linear-gradient(
            145deg,
            rgba(255,122,0,.20),
            rgba(255,122,0,.06)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 20px 35px rgba(0,0,0,.18);

}

.dashboard-main-icon i {

    font-size: 32px;

}

.dashboard-title {

    font-size: 23px;
    font-weight: 800;

}

.home-dashboard-card p {

    margin:
        8px 0 25px;

    color:
        rgba(255,255,255,.57);

    font-size: 12px;

}

.dashboard-modules {

    display: grid;

    gap: 10px;

}

.dashboard-module {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(255,255,255,.045);

}

.dashboard-module-icon {

    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.07);

    color:
        var(--home-orange);

}

.dashboard-module strong {

    display: block;

    font-size: 11px;

}

.dashboard-module span {

    display: block;

    margin-top: 2px;

    color:
        rgba(255,255,255,.43);

    font-size: 9px;

}


/* ============================================================
   FLOATING CARDS
   ============================================================ */

.home-floating-card {

    position: absolute;
    z-index: 6;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 170px;

    padding: 12px 14px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid
        rgba(255,255,255,.8);

    box-shadow:
        var(--home-shadow-3d);

    backdrop-filter: blur(12px);

}

.home-floating-card strong {

    display: block;

    font-size: 11px;

}

.home-floating-card small {

    display: block;

    margin-top: 2px;

    color:
        var(--home-muted);

    font-size: 9px;

}

.floating-icon {

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        var(--home-orange-soft);

    color:
        var(--home-orange);

}

.floating-one {

    top: 65px;
    right: 0;

    animation:
        floatingCard 5s ease-in-out infinite;

}

.floating-two {

    bottom: 80px;
    left: 0;

    animation:
        floatingCard 6s ease-in-out infinite reverse;

}

.floating-three {

    bottom: 10px;
    right: 30px;

    animation:
        floatingCard 5.5s ease-in-out infinite .5s;

}

@keyframes floatingCard {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


/* ============================================================
   ORBITS
   ============================================================ */

.home-orbit {

    position: absolute;

    border:
        1px solid
        rgba(255,122,0,.12);

    border-radius: 50%;

    pointer-events: none;

}

.home-orbit-one {

    width: 510px;
    height: 510px;

    animation:
        orbitRotate 20s linear infinite;

}

.home-orbit-two {

    width: 390px;
    height: 390px;

    animation:
        orbitRotate 14s linear infinite reverse;

}

.home-orbit-three {

    width: 600px;
    height: 600px;

    border-color:
        rgba(7,26,47,.07);

    animation:
        orbitRotate 30s linear infinite;

}

@keyframes orbitRotate {

    to {

        transform: rotate(360deg);

    }

}


/* ============================================================
   SCROLL
   ============================================================ */

.home-scroll-indicator {

    position: absolute;

    bottom: 25px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #8291A3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;

}

.home-scroll-indicator span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--home-orange);

    animation:
        scrollPulse 1.8s ease-in-out infinite;

}

@keyframes scrollPulse {

    0%,
    100% {

        opacity: .3;
        transform: scale(.8);

    }

    50% {

        opacity: 1;
        transform: scale(1.2);

    }

}


/* ============================================================
   SEARCH
   ============================================================ */

.home-search-section {

    position: relative;

    z-index: 5;

    margin-top: -55px;

}

.home-search-card {

    padding: 28px;

    border:
        1px solid
        rgba(7,26,47,.06);

    border-radius:
        var(--home-radius-lg);

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 25px 70px rgba(7,26,47,.12);

    backdrop-filter: blur(20px);

}

.home-search-intro {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 22px;

}

.home-search-icon {

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background:
        var(--home-orange-soft);

    color:
        var(--home-orange);

}

.home-search-icon i {

    font-size: 20px;

}

.home-section-kicker {

    display: block;

    margin-bottom: 7px;

    color:
        var(--home-orange-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

}

.home-search-intro h2 {

    margin: 0;

    font-size: 20px;

    letter-spacing: -.025em;

}

.home-search-intro p {

    margin:
        5px 0 0;

    color:
        var(--home-muted);

    font-size: 12px;

}

.home-search-form {

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 10px;

}

.home-search-input {

    position: relative;

}

.home-search-input i {

    position: absolute;

    left: 18px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        #92A0B1;

}

.home-search-input input {

    width: 100%;
    height: 56px;

    padding:
        0 18px 0 48px;

    border:
        1px solid
        var(--home-line);

    border-radius: 14px;

    outline: none;

    background:
        #FAFCFE;

    color:
        var(--home-text);

    font-size: 12px;

    transition:
        border var(--home-transition),
        box-shadow var(--home-transition);

}

.home-search-input input:focus {

    border-color:
        rgba(255,122,0,.55);

    box-shadow:
        0 0 0 4px rgba(255,122,0,.09);

}

.home-search-button {

    height: 56px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        0 22px;

    border: 0;

    border-radius: 14px;

    background:
        var(--home-navy);

    color: white;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(7,26,47,.17);

    transition:
        transform var(--home-transition),
        box-shadow var(--home-transition);

}

.home-search-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px rgba(7,26,47,.23);

}

.home-search-tags {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 14px;

}

.home-search-tags span {

    color:
        #8593A3;

    font-size: 10px;

}

.home-search-tags button {

    padding:
        6px 10px;

    border:
        1px solid
        var(--home-line);

    border-radius: 999px;

    background:
        white;

    color:
        #526276;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;

    transition:
        all var(--home-transition);

}

.home-search-tags button:hover {

    color:
        var(--home-orange-dark);

    border-color:
        rgba(255,122,0,.3);

    background:
        var(--home-orange-soft);

}


/* ============================================================
   STATS
   ============================================================ */

.home-stat-section {

    padding:
        105px 0 95px;

}

.home-stat-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 40px;

    margin-bottom: 35px;

}

.home-stat-header h2 {

    max-width: 650px;

    margin: 0;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.1;

    letter-spacing: -.045em;

}

.home-stat-header p {

    max-width: 310px;

    margin: 0;

    color:
        var(--home-muted);

    font-size: 11px;

    line-height: 1.7;

}

.home-stat-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.home-stat-card {

    position: relative;

    min-height: 260px;

    overflow: hidden;

    padding: 24px;

    border:
        1px solid
        rgba(7,26,47,.07);

    border-radius:
        var(--home-radius-lg);

    background:
        white;

    box-shadow:
        var(--home-shadow-md);

    transform-style: preserve-3d;

    transition:
        transform .25s ease,
        box-shadow var(--home-transition);

}

.home-stat-card:hover {

    box-shadow:
        var(--home-shadow-3d);

}

.home-stat-number {

    position: relative;
    z-index: 2;

    font-size:
        clamp(38px, 4vw, 55px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -.055em;

    color:
        var(--home-navy);

}

.home-stat-number span:last-child {

    color:
        var(--home-orange);

}

.home-stat-line {

    width: 45px;
    height: 3px;

    margin:
        18px 0 23px;

    border-radius: 999px;

    background:
        var(--home-orange);

}

.home-stat-icon {

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        var(--home-orange-soft);

    color:
        var(--home-orange);

}

.home-stat-icon i {

    font-size: 17px;

}

.home-stat-card h3 {

    margin:
        15px 0 5px;

    font-size: 14px;

}

.home-stat-card p {

    max-width: 210px;

    margin: 0;

    color:
        var(--home-muted);

    font-size: 10px;

    line-height: 1.65;

}

.home-stat-index {

    position: absolute;

    right: 18px;
    bottom: 12px;

    font-size: 50px;
    line-height: 1;

    font-weight: 800;

    color:
        rgba(7,26,47,.055);

    user-select: none;

}


/* ============================================================
   ECOSYSTEM
   ============================================================ */

.home-ecosystem-section {

    padding:
        100px 0;

    background:
        white;

}

.home-section-heading {

    max-width: 780px;

    margin-bottom: 48px;

}

.home-section-heading.centered {

    margin-left: auto;
    margin-right: auto;

    text-align: center;

}

.home-section-heading h2 {

    margin: 0 0 15px;

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.08;

    letter-spacing: -.05em;

}

.home-section-heading p {

    max-width: 700px;

    margin: 0;

    color:
        var(--home-muted);

    font-size: 13px;

    line-height: 1.8;

}

.home-ecosystem-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}

.home-ecosystem-card {

    position: relative;

    min-height: 330px;

    overflow: hidden;

    padding: 27px;

    border:
        1px solid
        var(--home-line);

    border-radius:
        var(--home-radius-lg);

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F8FAFC
        );

    box-shadow:
        var(--home-shadow-sm);

    transform-style: preserve-3d;

    transition:
        transform .3s ease,
        box-shadow var(--home-transition),
        border-color var(--home-transition);

}

.home-ecosystem-card::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,122,0,.11),
            transparent 70%
        );

    pointer-events: none;

}

.home-ecosystem-card:hover {

    border-color:
        rgba(255,122,0,.22);

    box-shadow:
        var(--home-shadow-3d);

}

.ecosystem-large {

    min-height: 390px;

    background:
        linear-gradient(
            145deg,
            #071A2F,
            #0D2D49
        );

    color: white;

}

.ecosystem-large p {

    color:
        rgba(255,255,255,.59) !important;

}

.ecosystem-large .ecosystem-label {

    color:
        #FF9B4A;

}

.ecosystem-wide {

    min-height: 290px;

}

.ecosystem-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.ecosystem-icon {

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background:
        var(--home-orange-soft);

    color:
        var(--home-orange);

    box-shadow:
        0 10px 25px rgba(255,122,0,.12);

}

.ecosystem-icon i {

    font-size: 20px;

}

.ecosystem-number {

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -.06em;

    color:
        rgba(7,26,47,.10);

}

.ecosystem-large .ecosystem-number {

    color:
        rgba(255,255,255,.11);

}

.ecosystem-label {

    display: block;

    margin-top: 28px;

    color:
        var(--home-orange-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;

}

.home-ecosystem-card h3 {

    max-width: 470px;

    margin:
        8px 0 11px;

    font-size:
        clamp(21px, 2.5vw, 29px);

    letter-spacing: -.04em;

}

.home-ecosystem-card p {

    max-width: 510px;

    margin: 0;

    color:
        var(--home-muted);

    font-size: 11px;

    line-height: 1.75;

}

.ecosystem-link {

    position: absolute;

    left: 27px;
    bottom: 25px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--home-navy);

    font-size: 10px;
    font-weight: 800;

}

.ecosystem-large .ecosystem-link {

    color: white;

}

.ecosystem-link i {

    color:
        var(--home-orange);

    transition:
        transform var(--home-transition);

}

.ecosystem-link:hover i {

    transform:
        translateX(5px);

}


/* ============================================================
   PROCESS
   ============================================================ */

.home-process-section {

    padding:
        105px 0;

    background:
        var(--home-bg);

}

.home-process-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

    align-items: start;

}

.home-process-intro {

    position: sticky;

    top: 100px;

}

.home-process-intro h2 {

    margin:
        10px 0 20px;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -.055em;

}

.home-process-intro h2 span {

    color:
        var(--home-orange);

}

.home-process-intro p {

    max-width: 390px;

    color:
        var(--home-muted);

    font-size: 12px;

    line-height: 1.8;

}

.home-process-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    color:
        var(--home-orange-dark);

    font-size: 11px;
    font-weight: 800;

}

.home-process-list {

    position: relative;

}

.home-process-list::before {

    content: "";

    position: absolute;

    left: 28px;
    top: 25px;
    bottom: 25px;

    width: 1px;

    background:
        var(--home-line);

}

.home-process-item {

    position: relative;

    display: grid;

    grid-template-columns:
        56px 54px 1fr;

    gap: 18px;

    align-items: center;

    min-height: 145px;

    padding:
        20px 0;

}

.process-number {

    position: relative;
    z-index: 2;

    font-size: 20px;

    font-weight: 800;

    color:
        var(--home-orange);

}

.process-icon {

    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border:
        5px solid
        var(--home-bg);

    border-radius: 50%;

    background:
        var(--home-navy);

    color: white;

    box-shadow:
        0 8px 18px rgba(7,26,47,.17);

}

.process-icon i {

    font-size: 17px;

}

.home-process-item h3 {

    margin:
        0 0 6px;

    font-size: 16px;

}

.home-process-item p {

    max-width: 500px;

    margin: 0;

    color:
        var(--home-muted);

    font-size: 11px;

    line-height: 1.7;

}


/* ============================================================
   AUDIENCE
   ============================================================ */

.home-audience-section {

    padding:
        100px 0;

    background:
        white;

}

.home-audience-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

}

.audience-card {

    padding: 25px;

    border:
        1px solid
        var(--home-line);

    border-radius:
        var(--home-radius-md);

    background:
        white;

    box-shadow:
        var(--home-shadow-sm);

    transition:
        transform var(--home-transition),
        box-shadow var(--home-transition);

}

.audience-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--home-shadow-md);

}

.audience-icon {

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background:
        var(--home-orange-soft);

    color:
        var(--home-orange);

}

.audience-icon i {

    font-size: 18px;

}

.audience-card h3 {

    margin:
        0 0 7px;

    font-size: 14px;

}

.audience-card p {

    margin: 0;

    color:
        var(--home-muted);

    font-size: 10px;

    line-height: 1.7;

}


/* ============================================================
   FINAL CTA
   ============================================================ */

.home-final-cta {

    position: relative;

    padding:
        80px 0 110px;

    overflow: hidden;

    background:
        var(--home-bg);

}

.home-cta-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,122,0,.14),
            transparent 68%
        );

    pointer-events: none;

}

.home-cta-card {

    position: relative;

    max-width: 920px;

    margin: auto;

    padding:
        65px 50px;

    overflow: hidden;

    text-align: center;

    border-radius:
        var(--home-radius-xl);

    background:
        linear-gradient(
            135deg,
            #071A2F,
            #0D2D49
        );

    color: white;

    box-shadow:
        0 30px 80px rgba(7,26,47,.22);

}

.home-cta-card::before {

    content: "";

    position: absolute;

    inset: 1px;

    border-radius:
        calc(var(--home-radius-xl) - 1px);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,122,0,.18),
            transparent 40%
        );

    pointer-events: none;

}

.home-cta-icon {

    position: relative;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin:
        0 auto 22px;

    border-radius: 19px;

    background:
        rgba(255,122,0,.15);

    color:
        var(--home-orange);

}

.home-cta-icon i {

    font-size: 25px;

}

.home-cta-card .home-section-kicker {

    position: relative;

    color:
        #FF9B4A;

}

.home-cta-card h2 {

    position: relative;

    max-width: 720px;

    margin:
        10px auto 15px;

    font-size:
        clamp(30px, 5vw, 50px);

    line-height: 1.05;

    letter-spacing: -.05em;

}

.home-cta-card p {

    position: relative;

    max-width: 620px;

    margin:
        0 auto;

    color:
        rgba(255,255,255,.58);

    font-size: 12px;

    line-height: 1.8;

}

.home-cta-actions {

    position: relative;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .home-hero-container {

        grid-template-columns:
            1fr;

    }

    .home-hero-content {

        text-align: center;

    }

    .home-hero-description {

        margin-left: auto;
        margin-right: auto;

    }

    .home-hero-actions,
    .home-hero-trust {

        justify-content: center;

    }

    .home-hero-visual {

        max-width: 600px;

        width: 100%;

        margin:
            0 auto;

    }

    .home-stat-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .home-audience-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 850px) {

    .home-process-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }

    .home-process-intro {

        position: static;

    }

    .home-ecosystem-grid {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 650px) {

    .home-hero {

        min-height: auto;

    }

    .home-hero-container {

        padding-top: 60px;
        padding-bottom: 90px;

    }

    .home-hero h1 {

        font-size: 45px;

    }

    .home-hero-description {

        font-size: 14px;

    }

    .home-hero-trust {

        align-items: center;

        flex-direction: column;

        gap: 9px;

    }

    .home-hero-visual {

        min-height: 430px;

        transform: scale(.9);

    }

    .home-dashboard-card {

        width: 340px;

        padding: 22px;

    }

    .home-floating-card {

        min-width: 145px;

        padding: 9px;

    }

    .floating-one {

        right: -15px;

    }

    .floating-two {

        left: -15px;

    }

    .floating-three {

        right: 5px;

    }

    .home-search-section {

        margin-top: -35px;

    }

    .home-search-card {

        padding: 20px;

    }

    .home-search-form {

        grid-template-columns:
            1fr;

    }

    .home-stat-grid {

        grid-template-columns:
            1fr;

    }

    .home-stat-header {

        flex-direction: column;

        align-items: flex-start;

    }

    .home-audience-grid {

        grid-template-columns:
            1fr;

    }

    .home-process-item {

        grid-template-columns:
            40px 48px 1fr;

        gap: 10px;

    }

    .process-icon {

        width: 48px;
        height: 48px;

    }

    .home-cta-card {

        padding:
            45px 22px;

    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .siinte-home *,
    .siinte-home *::before,
    .siinte-home *::after {

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;

    }

}