@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-top: #F1FBF5;
    --bg-bottom: #FFF;
    --ink: #12142B;
    --ink-soft: #5B6072;
    --line: #12142b17;
    --card-bg: #FFF;
    --green-900: #0E3B26;
    --green-700: #177A4A;
    --green-500: #28A866;
    --green-300: #7FD9A6;
    --green-100: #E3F7EA;
    --art-bg: #F5F7F5;
    --shadow: 0 16px 34px #12142b12;
    --apple-green: #34c759;
    --apple-bg: #f5f5f7;
    --text-dark: #1d1d1f;
    --ui-border: #00000014;
    --shadow-card: 0 50px 100px -20px #32325d14, 0 30px 60px -30px #0000000d, inset 0 -2px 6px 0 #0a254008;
    --shadow-float: 0 20px 40px #00000014, 0 1px 3px #00000008;
    --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
    --apple-green: #34c759;
    --apple-bg: #f5f5f7;
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --ui-border: #0000000f;
    --shadow-apple-main: 0 50px 100px -20px #32325d14, 0 30px 60px -30px #0000000d;
    --shadow-apple-hover: 0 20px 40px #00000014, 0 1px 3px #00000008;
    --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
    --apple-green: #427e72;
    --apple-bg: #f5f5f7;
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
    --uc-apple-green: #417d71;
    --uc-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --why-apple-green: #34c759;
    --why-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --apple-bg: #f5f5f7;
    --apple-text-main: #1d1d1f;
    --apple-text-muted: #424245;
    --apple-border: #d2d2d7;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Inter;
    background-color: #fefefe;
    color: var(--ink);
    overflow-x: hidden !important;
}

.hero-container {
    padding: 1vh 0;
}

.main-wrapper {
    width: 98vw;
    height: 98vh;
    background-color: #fff;
    border-radius: 30px;
    padding: 15px 15px 0;
    box-shadow: 0 10px 30px #98989826;
    box-sizing: border-box;
}

.hero-image-box {
    flex-grow: 1;
    border-radius: 24px;
}

.hero-video {
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    top: 0;
    left: 0;
    background-color: #ffffff81; 
    z-index: 2;
}

.top-nav-wrapper,
.hero-content {
    position: relative;
    z-index: 3;
}

.custom-navbar {
    background-color: #ffffffd9; 
    backdrop-filter: blur(12px);
    border: 1px solid #fff6;
    width: 340px; 
    border-radius: 28px; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links {
    grid-template-columns: 1fr 1fr; 
    gap: 0.4rem;
    padding: 0 1.2rem; 
    max-height: 0; 
    opacity: 0;
    margin-top: 0;
    padding-bottom: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f; 
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 12px; 
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.nav-links a:hover {
    background-color: #0000000f; 
    transform: scale(0.98); 
}

.nav-links a:last-child:nth-child(odd) {
    grid-column: span 2;
    margin: 0 20px; 
}

.custom-navbar:hover .nav-links {
    max-height: 250px; 
    opacity: 1;
    margin-top: 10px;
    padding-bottom: 20px;
}

.menu-icon {
    cursor: pointer;
    color: #1d1d1f;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0.5rem;
    background: transparent;
    border: 0;
}

.menu-icon:hover,
.menu-icon:focus-visible {
    color: #000;
}

@media (width > 992px) {
    .top-nav-wrapper.is-scrolled {
        position: fixed;
        top: 1rem;
        left: 50%;
        z-index: 1050;
        width: 1100px;
        transform: translateX(-50%);
    }

    .top-nav-wrapper.is-scrolled .custom-navbar {
        width: 100%;
        min-height: 58px;
        flex-direction: row !important;
        align-items: center;
        overflow: visible !important;
        border-radius: 18px;
        box-shadow: 0 14px 36px #12142b1f !important;
    }

    .top-nav-wrapper.is-scrolled .nav-top-row {
        width: auto !important;
        flex: 0 0 auto;
        padding: .55rem 1rem .55rem 1.25rem !important;
    }

    .top-nav-wrapper.is-scrolled .menu-icon {
        display: none;
    }

    .top-nav-wrapper.is-scrolled .nav-links {
        display: flex !important;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
        gap: .1rem;
        max-height: none;
        margin: 0;
        padding: .35rem .7rem .35rem 0;
        opacity: 1;
    }

    .top-nav-wrapper.is-scrolled .nav-links a {
        padding: .55rem .7rem;
        font-size: .8rem;
        white-space: nowrap;
    }

    .top-nav-wrapper.is-scrolled .nav-links a:last-child:nth-child(odd) {
        grid-column: auto;
        margin: 0;
    }
}

@media (width < 991.98px) {
    .top-nav-wrapper.is-scrolled {
        position: fixed;
        top: .75rem;
        left: 50%;
        z-index: 1050;
        width: min(92vw, 340px);
        transform: translateX(-50%);
    }
}

.partner-label {
    font-size: 0.65rem;
    max-width: 140px;
    line-height: 1.2;
}

.section-label-muted {
    color: #86868b;
}

.hero-content {
    flex-grow: 1;
    padding-bottom: 40px; 
}

.hero-content h1, 
.hero-content h2 {
    font-weight: 300; 
    letter-spacing: -0.5px;
}

.btn-dark {
    background-color: #1a1a1a;
    border: none;
}

.btn-light {
    border: none;
}

.logo-bar {
    height: 80px; 
}

.muted-text-overlay {
    left: 0;
    top: 0;
    height: 90%;
    padding-left: 30px;
    padding-right: 50px;
    background: linear-gradient(to right, #fff 75%, transparent 100%);
    z-index: 2;
}

.marquee-wrapper {
    left: 0;
    top: 0;
    z-index: 1;
}

.marquee-track {
    width: max-content;
    animation: scroll-marquee 45s linear infinite; 
}

.marquee-items {
    gap: 60px;
    padding-right: 60px;
}

.marquee-logo {
    height: 32px;
    width: auto;
    filter: grayscale(100%) contrast(95%); 
    mix-blend-mode: multiply; 
    opacity: 0.5; 
    transition: opacity 0.3s ease;
}

.marquee-logo:hover {
    opacity: 1; 
}

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

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

.problem-section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.label-text {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    color: #427e72; 
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.problem-heading {
    font-size: 3rem;
    letter-spacing: -1px;
    color: #1d1d1f;
    line-height: 1.15;
    margin-bottom: 24px;
}

.problem-description {
    font-size: 1.15rem;
    color: #515154;
    line-height: 1.5;
    font-weight: 400;
    max-width: 90%;
}

.design-accordion {
    gap: 12px;
}

.design-accordion .accordion-item {
    border: 1px solid transparent;
    background-color: #f5f5f7;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.design-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: #fff !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px #427e7214; 
    border: 1px solid #427e7240; 
}

.design-accordion .accordion-button {
    box-shadow: none !important;
    padding: 22px 28px;
    font-weight: 400;
    color: #1d1d1f;
    border-radius: 40px;
}

.design-accordion .accordion-button:not(.collapsed) {
    font-weight: 600;
    background: transparent;
    color: #1d1d1f;
}

.design-accordion .accordion-button::after {
    display: none;
}

.acc-num {
    width: 26px;
    height: 26px;
    background: #e5e5ea;
    border-radius: 6px;
    margin-right: 18px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #515154;
}

.acc-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1d1d1f;
    color: #fff;
    margin-left: auto; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-accordion .accordion-button:not(.collapsed) .acc-icon {
    background: #427e72;
    color: #fff;
    border: none;
    transform: rotate(45deg); 
}

.design-accordion .accordion-body {
    padding: 0 40px 28px 72px; 
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.eyebrow-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .45rem 1.1rem;
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--ink-soft);
    box-shadow: 0 8px 20px #12142b0d;
}

.headline {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 600;
    line-height: 1.25;
    max-width: 720px;
    margin: 1.4rem auto 0.9rem;
    color: var(--ink);
}

.subhead {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

.process-row {
    display: flex;
    align-items: stretch;
    gap: 2px;
    margin-top: 2.75rem;
}

.process-row + .process-row {
    margin-top: 4px;
}

.arrow-col {
    flex: 0 0 0px;
    width: 0;
    z-index: 3;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-right: -19px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    flex-shrink: 0;
    box-shadow: 0 6px 14px #12142b1f;
    z-index: 3;
}

.step-card {
    flex: 1 1 0;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.3rem 1.3rem 1.5rem;
    box-shadow: var(--shadow);
    gap: .85rem;
    min-width: 0;
    z-index: 1;
}

.step-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.32;
    color: var(--ink);
    min-height: 2.6em;
    margin: 0;
}

.step-art {
    height: 118px;
    border-radius: 16px;
    background: var(--art-bg);
}

.step-art svg {
    width: 78%;
    height: 78%;
    overflow: visible;
}

.step-tag {
    align-self: flex-start;
    color: var(--green-700);
    font-size: .78rem;
    font-weight: 600;
    padding: .32rem .75rem
}

@keyframes bob {
    0%,100% { 
        transform: translateY(0); 
    }

    50% { 
        transform: translateY(-5px); 
    }
}

@keyframes pulse-scale {
    0%,100% { 
        transform: scale(1); 
    }

    50% { 
        transform: scale(1.16); 
    }
}

@keyframes twinkle {
    0%,100% { 
        opacity: .35; 
    }

    50% { 
        opacity: 1; 
    }
}

@keyframes sweep-down {
    0% { 
        transform: translateY(-14px); 
        opacity:0; 
    }

    15% { 
        opacity:1; 
    }

    85% { 
        opacity:1; 
    }

    100% { 
        transform: translateY(14px); 
        opacity:0; 
    }
}

@keyframes needle-swing {
    0%,100% { 
        transform: rotate(-14deg); 
    }

    50% { 
        transform: rotate(14deg); 
    }
}

@keyframes draw-check {
    0% { 
        stroke-dashoffset: 26; 
    }

    40% { 
        stroke-dashoffset: 0; 
    }

    75% { 
        stroke-dashoffset: 0; 
    }

    100% { 
        stroke-dashoffset: 26; 
    }
}

@keyframes radar-ping {
    0% { 
        transform: scale(0.6); 
        opacity:.7; 
    }

    100% { 
        transform: scale(1.5); 
        opacity:0; 
    }
}

.anim-bob { 
    animation: bob 2.4s ease-in-out infinite; 
    transform-box: fill-box; 
    transform-origin: center; 
}

.anim-pulse { 
    animation: pulse-scale 2s ease-in-out infinite; 
    transform-box: fill-box; transform-origin: center; 
}

.anim-twinkle { 
    animation: twinkle 1.6s ease-in-out infinite; 
}

.anim-sweep { 
    animation: sweep-down 2.6s ease-in-out infinite; 
}

.anim-needle { 
    animation: needle-swing 2.6s ease-in-out infinite; 
    transform-box: fill-box; 
    transform-origin: 60px 70px; 
}

.anim-check { 
    stroke-dasharray: 26; 
    animation: draw-check 3s ease-in-out infinite; 
}

.anim-ping { 
    animation: radar-ping 2.4s ease-out infinite; 
    transform-box: fill-box; 
    transform-origin: center; 
}

.anim-ping-delay { 
    animation-delay: 1.2s; 
}

@media (width < 991.98px) {
    .process-row {
        flex-direction: column;
        gap: 0.3rem;
    }

    .arrow-col { 
        display:none; 
    }

    .step-card { 
        flex: 1 1 auto; 
    }
}

.scroll-track::-webkit-scrollbar { 
    display: none; 
}

.scroll-track{
    padding: 2rem 5vw 4rem;
}

.step-card-how { 
    backdrop-filter: blur(40px); 
    box-shadow: var(--shadow-card); 
    transform: translateZ(0); 
    border: 1px solid #fff9; 
    flex: 0 0 85vw; 
    max-width: 1200px; 
    height: 550px;
    border-radius: 45px;
    border: 6px solid white;
}

.macos-window { 
    box-shadow: var(--shadow-float); 
    transition: transform 0.5s var(--ease-apple); 
    max-width: 500px; 
    height: 85%;
    border: 3px solid #dbdbdb !important;
}

.macos-window:hover { 
    transform: translateY(-5px) scale(1.01); 
}

.nav-btn { 
    backdrop-filter: blur(20px); 
    box-shadow: 0 12px 30px #00000014, inset 0 1px 0 #fff; 
    transition: all 0.4s var(--ease-apple); 
    z-index: 100; 
}

.nav-btn:hover:not(:disabled) { 
    background: var(--text-dark) !important; 
    color: #fff !important; 
    border-color: var(--text-dark) !important; 
    box-shadow: 0 20px 40px #00000026; 
    transform: translateY(-50%) scale(1.08) !important; 
}

.nav-btn:disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
    box-shadow: none; background: #ffffff80 !important; 
}

.nav-btn i { 
    transition: transform 0.3s ease; 
}

.nav-btn-left:hover:not(:disabled) i { 
    transform: translateX(-3px); 
}

.nav-btn-right:hover:not(:disabled) i { 
    transform: translateX(3px); 
}

.anim-float { 
    animation: float-subtle 4s infinite ease-in-out; 
}

.delay-1 { 
    animation-delay: 1s; 
} 

.delay-2 { 
    animation-delay: 2s; 
}

@keyframes float-subtle { 
    0%, 100% { 
        transform: translateY(0); 
    } 
    
    50% { 
        transform: translateY(-6px); 
    } 
}

.anim-spin { 
    animation: spin 6s linear infinite; 
}

@keyframes spin { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.anim-flow::after { 
    content: ''; 
    position: absolute; 
    background: var(--apple-green); 
    top:0; 
    left:0 !important; 
    bottom:0; 
    width: 0; 
    border-radius: 2px; 
    animation: flow-data 2.5s infinite var(--ease-apple); 
}

@keyframes flow-data { 
    0% { 
        width: 0; 
        opacity: 1; 
    } 
    
    50% { 
        width: 100%; 
        opacity: 1; 
    } 
    
    100% { 
        width: 100%; 
        opacity: 0; 
    } 
}

.anim-bounce { 
    animation: bounce-smooth 3s infinite ease-in-out; 
}

@keyframes bounce-smooth { 
    0%, 100% { 
        transform: translateY(0); 
    } 
    
    50% { 
        transform: translateY(-8px); 
    } 
}

.anim-pop-check { 
    animation: pop-check 2s infinite alternate; 
}

@keyframes pop-check { 
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 0 #34c75966; 
    } 
    
    100% { 
        transform: scale(1.1); 
        box-shadow: 0 0 10px #34c75999; 
    } 
}

.anim-scan { 
    animation: scan 2.5s infinite linear; 
    left: 0; 
    width: 100%; 
    height: 3px; 
    background: var(--apple-green); 
    box-shadow: 0 0 15px var(--apple-green), 0 0 5px #fff; 
    z-index: 10;
}

@keyframes scan { 
    0% { 
        top: -10px; 
    } 
    
    100% { 
        top: 100%; 
    } 
}

.anim-pop-up { 
    animation: pop-up 3s infinite var(--ease-apple); 
    opacity: 0; 
    transform: translateY(10px); 
}

.delay-200 { 
    animation-delay: 0.2s; 
} 

.delay-400 { 
    animation-delay: 0.4s; 
}

@keyframes pop-up { 
    0%, 10% { 
        opacity: 0; 
        transform: translateY(10px); 
    } 
    
    20%, 80% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    
    90%, 100% { 
        opacity: 0; 
        transform: translateY(-10px); 
    } 
}

.anim-blink::after { 
    content: ''; 
    position: absolute; 
    top: 8px; 
    right: 8px; 
    width: 6px; 
    height: 6px; 
    border-radius: 50%; 
    background: var(--apple-green); 
    animation: blink-status 1s infinite; 
    box-shadow: 0 0 6px var(--apple-green); 
}

.blink-yellow::after { 
    background: #ffbd2e; 
    box-shadow: 0 0 6px #ffbd2e; 
    animation-delay: 0.3s; 
}

@keyframes blink-status { 
    0%, 49% { 
        opacity: 1; 
    } 
    
    50%, 100% { 
        opacity: 0.3; 
    } 
}

.anim-pulse-shield { 
    box-shadow: 0 0 0 0 #34c75966; 
    animation: pulse-shield 2s infinite var(--ease-apple); 
}

@keyframes pulse-shield { 
    0% { 
        box-shadow: 0 0 0 0 #34c75980; 
        transform: scale(1); 
    } 
    
    50% { 
        transform: scale(1.05); 
    } 
    
    100% { 
        box-shadow: 0 0 0 30px #34c75900; 
        transform: scale(1); 
    } 
}

.anim-travel { 
    animation: travel 2s infinite linear; 
}

@keyframes travel { 
    0% { 
        left: 0; 
        opacity: 0; 
    } 
    
    20% { 
        opacity: 1; 
    } 
    
    80% { 
        opacity: 1; 
    } 
    
    100% { 
        left: 100%; 
        opacity: 0; 
    } 
}

/* --- FIXED GAUGE CONTAINER STYLES --- */
.gauge{
    width: 220px; 
    height: 120px; 
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gauge-value{
    font-size: 4rem; 
    color: var(--apple-green); 
    line-height: 0.8;
    z-index: 1;
}

.avatar-img{
    width: 48px; 
    height: 48px; 
    border: 2px solid var(--apple-green);
}

.tick-style{
    right: 20px; 
    top: 50%; 
    font-size: 0.85rem; 
    background: #34c7591a; 
    border-color: var(--apple-green); 
    color: var(--apple-green);
}

.bar-one{
    background: #e5e5ea; 
    height: 30%; 
    animation-delay: 0.1s;
}

.bar-two{
    background: var(--apple-green); 
    opacity:0.3; 
    height: 45%; 
    animation-delay: 0.4s;
}

.bar-three{
    background: #e5e5ea; 
    height: 35%; 
    animation-delay: 0.2s;
}

.bar-four{
    background: var(--apple-green); 
    opacity:0.3; 
    height: 60%; 
    animation-delay: 0.6s;
}

.bar-five{
    background: #e5e5ea; 
    height: 50%; 
    animation-delay: 0.3s;
}

.bar-six{
    background: var(--apple-green); 
    opacity:0.3; 
    height: 85%; 
    animation-delay: 0.7s;
}

.bar-seven{
    background: var(--apple-green); 
    height: 100%; 
    animation-delay: 0.8s;
}

.notification-ui{
    height: 120px; 
    box-shadow: inset 0 2px 10px #00000005;
}

.risk-gauge {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.risk-gauge-track,
.risk-gauge-value {
    fill: none;
    stroke-width: 22;
    stroke-linecap: round;
}

.risk-gauge-track {
    stroke: #e5e5ea;
}

.risk-gauge-value {
    stroke: var(--apple-green);
    stroke-dasharray: 330;
    stroke-dashoffset: 330;
    animation: fill-gauge 2.5s infinite alternate var(--ease-apple);
}

@keyframes fill-gauge {
    from {
        stroke-dashoffset: 330;
        opacity: 0.65;
    }

    to {
        stroke-dashoffset: 50;
        opacity: 1;
    }
}

.anim-heartbeat { 
    animation: heartbeat 2s infinite alternate; 
}

@keyframes heartbeat { 
    0% { 
        transform: scale(1); 
        text-shadow: none; 
    } 
    
    100% { 
        transform: scale(1.03); 
        text-shadow: 0 4px 15px #34c75933; 
        color: var(--apple-green); 
    } 
}

.anim-row-focus { 
    border-color: #34c75966 !important; 
    animation: row-focus 4s infinite; 
}

.anim-row-focus img { 
    border-color: var(--apple-green) !important; 
    box-shadow: 0 0 0 4px #34c75926 !important; 
}

@keyframes row-focus { 
    0%, 20% { 
        box-shadow: 0 4px 12px #00000008; 
        background: #fff; 
    } 
    
    30%, 80% { 
        box-shadow: 0 12px 28px #34c7591f; 
        background: #fafffa; 
        z-index: 10; 
    } 
    
    90%, 100% { 
        box-shadow: 0 4px 12px #00000008; 
        background: #fff; 
    } 
}

.anim-avatar { 
    animation: breath-avatar 4s infinite alternate; 
}

@keyframes breath-avatar { 
    0% { 
        transform: scale(1); 
    } 
    
    100% { 
        transform: scale(1.05); 
    } 
}

.anim-stamp { 
    opacity: 0; 
    animation: stamp-down 4s infinite var(--ease-apple); 
    backdrop-filter: blur(4px); 
}

@keyframes stamp-down { 
    0%, 35% { 
        opacity: 0; 
        transform: translateY(-50%) scale(2) rotate(-10deg); 
    } 
    
    45%, 85% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1) rotate(-10deg); 
    } 
    
    95%, 100% { 
        opacity: 0; 
    } 
}

.anim-chart { 
    animation: chart-dance 2s infinite alternate ease-in-out; 
}

@keyframes chart-dance { 
    0% { transform: scaleY(0.3); 
        transform-origin: bottom; 
    } 
    
    100% { 
        transform: scaleY(1); 
        transform-origin: bottom; 
    } 
}

.anim-scroll { 
    animation: scroll-up 6s infinite linear; 
}

@keyframes scroll-up { 
    0% { 
        transform: translateY(0); 
    } 
    
    100% { 
        transform: translateY(-70px); 
    } 
}

.step-subtitle{
    font-size: 0.85rem; 
    letter-spacing: 0.12em; 
    color: #86868b !important;
}

.step-title-how{
    font-size: clamp(1.5rem, 2.6vw, 2.8rem); 
    letter-spacing: -0.04em; 
    line-height: 1.05;
}

.step-content{
    flex: 0 0 42%;
}

.window-bar{
    height: 44px;
}

.window-options{
    width: 12px; 
    height: 12px;
}

.id-block{
    width: 160px; 
    top: -5%; 
    left: -5%; 
    z-index: 1;
}

.icon-block{
    width: 36px; 
    height: 36px;
}

.line-style{
    height: 6px;
}

.engine-rules{
    width: 180px; 
    top: 30%; 
    left: 38%; 
    z-index: 2;
}

.database-box{
    width: 180px; 
    top: 70%; 
    left: 85%; 
    z-index: 3;
}

.stroke-one{
    background: #e5e5ea; 
    top: 30%; 
    left: 30%; 
    width: 65px; 
    height: 3px; 
    transform: rotate(28deg);
}

.stroke-two{
    background: #e5e5ea; 
    top: 70%; 
    left: 80%; 
    width: 65px; 
    height: 3px; 
    transform: rotate(25deg); 
    animation-delay: 1.5s;
}

.dropdown-lines{
    border: 2px dashed #d2d2d7;
}

.green-check{
    width: 24px; 
    height: 24px; 
    font-size: 12px;
}

.copyright{
    width: 24px; 
    height: 24px; 
    border: 2px solid #e5e5ea;
}

.spin{
    width: 14px; 
    height: 14px; 
    border-width: 2px;
}

.id-card{
    width: 260px; 
    height: 160px;
    border: 4px solid #e4e4e4 !important;
}

.face-card{
    width: 60px; 
    height: 70px; 
    background: #f0f0f2;
    object-fit: cover;
}

.bank-icon{
    width: 70px; 
    height: 70px; 
    top: 12%; 
    left: 14.5%; 
    font-size: 1.8rem; 
    color: #86868b;
}

.shield-icon{
    width: 70px; 
    height: 70px; 
    top: 42%; 
    left: 10%; 
    font-size: 1.8rem; 
    color: #86868b;
}

.internet-icon{
    width: 70px; 
    height: 70px; 
    bottom: 10%; 
    left: 14.5%; 
    font-size: 1.8rem; 
    color: #86868b; 
    animation-delay: 1s;
}

.search-icon{
    width: 150px; 
    height: 150px; 
    background: var(--apple-green); 
    font-size: 3.2rem; 
    z-index: 5;
}

.anim-glow{
    top: 28%; 
    left: 25%; 
    transform: rotate(30deg); 
    border-top: 2px dashed #34c7594d; 
    width: 110px; 
    z-index: 1;
}

.ani-travel{
    top: -5px; 
    width: 8px; 
    height: 8px;
    animation-delay: 1.2s;
}

.anim-glow-two{
    top: 50%; 
    left: 22%; 
    border-top: 2px dashed #34c7594d; 
    width: 110px; 
    z-index: 1;
}

.anim-glow-three{
    bottom: 28%; 
    left: 25%; 
    transform: rotate(-30deg); 
    border-top: 2px dashed #34c7594d; 
    width: 110px; 
    z-index: 1;
}

.scroll-btn{
    width: 64px; 
    height: 64px; 
    left: 3vw;
}

.scroll-btn-right{
    width: 64px; 
    height: 64px; 
    right: 3vw;
}

.verification-container {
    background: #fff;
    border-radius: 40px;
    box-shadow: var(--shadow-apple-main);
    border: 1px solid #fffc;
}

.eyebrow-text {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--text-gray);
}

.apple-headline {
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-dark);
}

.ios-widget {
    background-color: #fbfbfd;
    border: 1px solid var(--ui-border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-apple);
    cursor: default;
}

.ios-widget:hover {
    background-color: #fff;
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-apple-hover);
    border-color: #34c75933;
}

.ios-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px #0000000a;
    border: 1px solid #00000005;
    transition: all 0.4s var(--ease-apple);
}

.ios-widget:hover .ios-icon-box {
    color: var(--apple-green) !important;
    box-shadow: 0 8px 16px #34c75926;
}

.cost-text-gray { 
    color: var(--text-gray) !important; 
}

.cost-text-apple { 
    color: var(--apple-green) !important; 
}

.cost-bg-apple-soft { 
    background: #34c75926; 
}

.cost-border-apple-soft { 
    border-color: #34c7594d !important; 
}

.cost-tracking-wide { 
    letter-spacing: 0.12em; 
}

.cost-tracking-tight { 
    letter-spacing: -0.04em; 
}

.cost-icon-box-lg { 
    width: 64px; 
    height: 64px; 
    transition: all 0.4s var(--ease-apple); 
}

.cost-icon-box-xl { 
    width: 80px; 
    height: 80px; 
}

.cost-funnel-col { 
    max-width: 300px; 
}

.cost-feature-row { 
    transition: transform 0.3s var(--ease-apple); 
}

.cost-feature-row:hover { 
    transform: translateX(8px); 
}

.cost-feature-icon-wrapper { 
    z-index: 2; 
}

.cost-feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background: #34c75966;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cost-feature-row:hover .cost-feature-icon-wrapper::after {
    opacity: 1;
    animation: cost-pulse-glow 2s infinite alternate;
}

@keyframes cost-pulse-glow {
    0% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.4; 
    }

    100% { 
        transform: translate(-50%, -50%) scale(1.5); 
        opacity: 0.8; 
    }
}

.cost-funnel-node-container { 
    transition: transform 0.4s var(--ease-apple); 
    cursor: default; 
}

.cost-funnel-node-container:hover { 
    transform: translateY(-5px); 
}

.cost-funnel-node-container:hover .cost-icon-box-lg { 
    transform: scale(1.1); 
    box-shadow: 0 10px 20px #00000014 !important; 
}

.cost-anim-arrow-right { 
    animation: cost-bounce-right 2s infinite ease-in-out; 
}

.cost-anim-arrow-down { 
    animation: cost-bounce-down 2s infinite ease-in-out; 
}

@keyframes cost-bounce-right {
    0%, 100% { 
        transform: translateX(0); 
        opacity: 0.6; 
    }

    50% { 
        transform: translateX(6px); 
        opacity: 1; 
    }
}

@keyframes cost-bounce-down {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 0.6; 
    }

    50% { 
        transform: translateY(6px); 
        opacity: 1; 
    }
}

.cost-result-pro-banner {
    background: linear-gradient(145deg, #1d1d1f 0%, #2d2d2f 100%);
    box-shadow: 0 30px 60px #00000026, inset 0 1px 1px #ffffff1a;
}

.cost-result-pro-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 50%; height: 200%;
    background: radial-gradient(circle, #34c75926 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.uc-text-apple { 
    color: var(--uc-apple-green) !important; 
}

.uc-tracking-wide { 
    letter-spacing: 0.12em; 
}

.uc-tracking-tight { 
    letter-spacing: -0.04em; 
}

.uc-bento-card {
    box-shadow: 0 10px 30px #00000005, inset 0 2px 4px #fff;
    transition: all 0.5s var(--uc-ease);
    min-height: 240px;
    cursor: default;
}

.uc-bento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px #0000000f;
    border-color: #34c75926 !important;
}

.uc-squircle {
    width: 56px;
    height: 56px;
    background: #34c7591a;
    color: var(--uc-apple-green);
    border-radius: 16px; 
    transition: all 0.4s var(--uc-ease);
}

.uc-bento-card:hover .uc-squircle {
    background: var(--uc-apple-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px #34c75940;
}

.uc-pro-banner {
    background: #1d1d1f;
    box-shadow: 0 20px 40px #00000026, inset 0 1px 1px #ffffff1a;
}

.uc-pro-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, #34c7591f 0%, transparent 60%);
    transform: rotate(25deg);
    pointer-events: none;
}

.why-text-apple { 
    color: var(--why-apple-green) !important; 
}

.why-tracking-wide { 
    letter-spacing: 0.12em; 
}

.why-tracking-tight { 
    letter-spacing: -0.04em; 
}

.why-pro-container {
    background-color: #0a0a0c;
    border-radius: 40px;
    box-shadow: 0 40px 80px #00000026, inset 0 1px 2px #ffffff1a;
}

/* Subtle ambient glow in the top corner */
.why-pro-container::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(circle, #34c7591a 0%, transparent 70%);
    pointer-events: none;
}

.why-grid-container {
    border-top: 1px solid #ffffff1a;
}

.why-spec-row {
    border-bottom: 1px solid #ffffff1a;
    transition: background-color 0.4s var(--why-ease);
}

/* The neon green accent line on hover */
.why-spec-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background-color: var(--why-apple-green);
    transform: scaleY(0);
    transition: transform 0.4s var(--why-ease);
    box-shadow: 0 0 10px #34c75980;
}

.why-spec-row:hover {
    background-color: #ffffff05;
}

.why-spec-row:hover::before {
    transform: scaleY(1);
}

.why-icon-glow {
    color: #ffffff80;
    transition: all 0.4s var(--why-ease);
}

.why-spec-row:hover .why-icon-glow {
    color: var(--why-apple-green);
    text-shadow: 0 0 12px #34c75966;
    transform: scale(1.1);
}

.why-gradient-text {
    background: linear-gradient(180deg, #fff 0%, #86868b 100%);
    background-clip: text;
    color: transparent;
}

.ftr-apple {
    background-color: var(--apple-bg);
    color: var(--apple-text-muted);
    font-size: 20px;
    padding: 40px 0 20px;
}

.ftr-apple h6 {
    color: var(--apple-text-main);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.ftr-apple a {
    color: var(--apple-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ftr-apple a:hover {
    color: var(--apple-text-main);
    text-decoration: underline;
}

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

.ftr-list li {
    margin-bottom: 0.5rem;
}

.ftr-bottom {
    border-top: 1px solid var(--apple-border);
    padding-top: 15px;
    margin-top: 30px;
}

.ftr-social a {
    font-size: 20px;
    color: var(--apple-text-main);
    transition: opacity 0.2s ease;
}

.ftr-social a:hover {
    opacity: 0.7;
    text-decoration: none;
}

@media screen and (width < 1024px) and (orientation: portrait) {
  .mobile-title{
    font-size: 22px !important;
  }

  .mobile-description{
    font-size: 14px !important;
  }

  .mobile-btn{
    font-size: 10px !important;
  }

  .arrow-col{
    display: none !important;
  }

  .scroll-track {
    flex-direction: column !important;
    overflow-x: visible !important;
    padding: 1rem !important;
  }

  .scroll-track .step-card-how {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 550px;
  }

  .scroll-btn,
  .scroll-btn-right {
    display: none !important;
  }

  .macos-window{
    height: 250px;
  }

  .id-block{
    width: 100px;
  }

  .engine-rules{
    width: 130px;
  }

  .rule-engine-name{
    font-size: 10px !important;
  }

  .cta-text{
    font-size: 17px !important;
  }

  .cost-icon-box-xl{
    width: 40px;
    height: 40px;
    font-size: 15px !important;
  }

  .search-icon{
    width: 80px;
    height: 80px;
    margin-left: 30px;
    font-size: 25px;
  }

  .internet-icon, .bank-icon, .shield-icon{
    width: 50px;
    height: 50px;
  }

  .internet-icon{
    top: 80px !important;
    z-index: 3;
  }

  .shield-icon{
    top: -30px !important;
    right: 10px;
  }

  .bank-icon{
    left: 20px !important;
    top: 25px;
    z-index: 2;
  }

  .gauge-value{
    font-size: 3rem;
  }

  .uc-bento-card{
    min-height: 150px !important;
  }

  .ftr-apple {
    font-size: 15px;
}

.ftr-apple h6 {
    font-size: 18px;
}

.ftr-social a {
    font-size: 20px !important;
}

.main-wrapper{
    height: 110% !important;
    margin-top:70px !important;
}
}
