
/* WordPress bridge: keeps the original local UI independent from theme layout. */
#ird-local-ui,
.entry-content #ird-local-ui,
.wp-site-blocks #ird-local-ui {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    overflow: hidden;
}
#ird-local-ui {
    display: block;
    line-height: 1.5;
}

/* =========================================================
   RESET & BASE
========================================================= */

#ird-local-ui {
    --primary: #6c4df6;
    --primary-dark: #5738e8;
    --pink: #e843b6;
    --text: #18152a;
    --muted: #77758a;
    --border: #e8e7ef;
    --light: #f8f7fc;
}

#ird-local-ui * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#ird-local-ui {
    scroll-behavior: smooth;
}

#ird-local-ui {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--text);
}

#ird-local-ui button,
#ird-local-ui input {
    font: inherit;
}

#ird-local-ui button {
    border: none;
}

#ird-local-ui .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   HEADER
========================================================= */

#ird-local-ui .site-header {
    height: 76px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

#ird-local-ui .header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ird-local-ui .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

#ird-local-ui .brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #6d4df5, #e646b8);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

#ird-local-ui .brand-name {
    color: #1c1928;
    font-size: 20px;
    font-weight: 800;
}

#ird-local-ui .brand-name span {
    color: var(--primary);
}

#ird-local-ui .header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

#ird-local-ui .header-nav a {
    color: #575464;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

#ird-local-ui .header-nav a:hover {
    color: var(--primary);
}


/* =========================================================
   HERO
========================================================= */

#ird-local-ui .hero {
    position: relative;
    overflow: hidden;
    padding: 85px 0 70px;
    background:
        radial-gradient(circle at 10% 10%,
            rgba(232, 67, 182, 0.22),
            transparent 32%),
        radial-gradient(circle at 90% 30%,
            rgba(108, 77, 246, 0.25),
            transparent 35%),
        linear-gradient(135deg,
            #f7f3ff 0%,
            #fff4fc 45%,
            #f4f0ff 100%);
}

#ird-local-ui .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

#ird-local-ui .hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

#ird-local-ui .glow-one {
    top: -200px;
    left: -100px;
    background: #e843b6;
}

#ird-local-ui .glow-two {
    right: -120px;
    bottom: -220px;
    background: #6c4df6;
}


/* =========================================================
   TABS
========================================================= */

#ird-local-ui .download-tabs {
    display: inline-flex;
    gap: 5px;
    padding: 5px;
    margin-bottom: 26px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(77, 54, 135, 0.08);
}

#ird-local-ui .tab {
    padding: 10px 17px;
    background: transparent;
    border-radius: 10px;
    color: #706d7b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

#ird-local-ui .tab:hover {
    color: var(--primary);
}

#ird-local-ui .tab.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 3px 12px rgba(70, 48, 150, 0.12);
}


/* =========================================================
   HERO TEXT
========================================================= */

#ird-local-ui .hero h1 {
    max-width: 800px;
    margin: 0 auto;
    color: #211c34;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -2px;
}

#ird-local-ui .hero-description {
    max-width: 610px;
    margin: 20px auto 35px;
    color: #696579;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   DOWNLOADER CARD
========================================================= */

#ird-local-ui .downloader-card {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(70, 47, 125, 0.13);
}

#ird-local-ui #download-form {
    display: flex;
    gap: 12px;
}

#ird-local-ui .url-input-wrapper {
    flex: 1;
    min-width: 0;
    height: 58px;
    display: flex;
    align-items: center;
    padding-left: 18px;
    background: #f7f6fa;
    border: 1px solid #e7e5ed;
    border-radius: 14px;
    transition: 0.25s;
}

#ird-local-ui .url-input-wrapper:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 77, 246, 0.1);
}

#ird-local-ui .input-icon {
    flex: 0 0 auto;
    margin-right: 12px;
    font-size: 18px;
}

#ird-local-ui #instagram-url {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #24212d;
    font-size: 15px;
}

#ird-local-ui #instagram-url::placeholder {
    color: #a09daa;
}

#ird-local-ui .paste-button {
    height: 38px;
    margin-right: 8px;
    padding: 0 14px;
    background: #eceaf3;
    border-radius: 9px;
    color: #5e596b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

#ird-local-ui .paste-button:hover {
    background: #dfdbea;
    color: var(--primary);
}

#ird-local-ui .process-button {
    position: relative;
    min-width: 155px;
    height: 58px;
    padding: 0 28px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #6c4df6, #8a46ed);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(108, 77, 246, 0.28);
    transition: 0.25s;
}

#ird-local-ui .process-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(108, 77, 246, 0.35);
}

#ird-local-ui .process-button:disabled {
    cursor: wait;
    opacity: 0.85;
}


/* =========================================================
   BUTTON LOADER
========================================================= */

#ird-local-ui .button-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#ird-local-ui .process-button.loading .button-text {
    display: none;
}

#ird-local-ui .process-button.loading .button-loader {
    display: flex;
}

#ird-local-ui .button-loader i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    animation: buttonDot 1.2s infinite ease-in-out;
}

#ird-local-ui .button-loader i:nth-child(2) {
    animation-delay: 0.15s;
}

#ird-local-ui .button-loader i:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes buttonDot {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

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


/* =========================================================
   LOADING AREA
========================================================= */

#ird-local-ui .loading-area {
    display: none;
    padding: 30px 10px 12px;
}

#ird-local-ui .loading-area.show {
    display: block;
    animation: fadeUp 0.3s ease;
}

#ird-local-ui .main-spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    border: 3px solid #ece9f5;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

#ird-local-ui .loading-text {
    color: #625d70;
    font-size: 14px;
    font-weight: 600;
}

#ird-local-ui .progress-track {
    width: 100%;
    max-width: 420px;
    height: 6px;
    margin: 16px auto 0;
    overflow: hidden;
    border-radius: 10px;
    background: #ebe8f1;
}

#ird-local-ui .progress-bar {
    width: 35%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,
            #6c4df6,
            #e843b6);
    animation: progressMove 1.6s infinite ease-in-out;
}

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

@keyframes progressMove {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(400%);
    }
}


/* =========================================================
   RESULT AREA
========================================================= */

#ird-local-ui .result-area {
    display: none;
    padding: 35px 15px 20px;
    animation: fadeUp 0.4s ease;
}

#ird-local-ui .result-area.show {
    display: block;
}

#ird-local-ui .result-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e8f8ed;
    color: #1a9b4c;
    font-size: 28px;
    font-weight: 700;
}

#ird-local-ui .result-area h3 {
    color: #282334;
    font-size: 23px;
}

#ird-local-ui .result-area p {
    margin: 8px 0 22px;
    color: #777382;
    font-size: 14px;
}

#ird-local-ui .final-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6c4df6, #e843b6);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(108, 77, 246, 0.25);
    transition: 0.25s;
}

#ird-local-ui .final-download-button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   STATUS
========================================================= */

#ird-local-ui .status-message {
    min-height: 22px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}

#ird-local-ui .status-message.error {
    color: #d83333;
}

#ird-local-ui .status-message.success {
    color: #159348;
}

#ird-local-ui .privacy-note {
    margin-top: 18px;
    color: #9b97a5;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   TRUST ITEMS
========================================================= */

#ird-local-ui .trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 34px;
}

#ird-local-ui .trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #615d6c;
    font-size: 13px;
    font-weight: 700;
}

#ird-local-ui .trust-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(108, 77, 246, 0.1);
    color: var(--primary);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

#ird-local-ui .how-section {
    padding: 100px 0;
    background: #ffffff;
}

#ird-local-ui .section-heading {
    max-width: 600px;
    margin: 0 auto 55px;
    text-align: center;
}

#ird-local-ui .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

#ird-local-ui .section-heading h2,
#ird-local-ui .feature-content h2 {
    color: #211c31;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -1px;
}

#ird-local-ui .section-heading p {
    margin-top: 15px;
    color: #777382;
    line-height: 1.7;
}

#ird-local-ui .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

#ird-local-ui .step-card {
    position: relative;
    padding: 32px;
    border: 1px solid #eceaf1;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.25s;
}

#ird-local-ui .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(40, 30, 70, 0.08);
}

#ird-local-ui .step-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: #e4e1ec;
    font-size: 18px;
    font-weight: 800;
}

#ird-local-ui .step-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: #f2efff;
    font-size: 24px;
}

#ird-local-ui .step-card h3 {
    margin-bottom: 10px;
    color: #282334;
    font-size: 19px;
}

#ird-local-ui .step-card p {
    color: #797584;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

#ird-local-ui .features-section {
    padding: 100px 0;
    background: #faf9fd;
}

#ird-local-ui .feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 70px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(232, 67, 182, 0.1),
            transparent 30%),
        #ffffff;
    border: 1px solid #eceaf1;
}

#ird-local-ui .feature-content h2 {
    max-width: 500px;
}

#ird-local-ui .feature-content>p {
    max-width: 520px;
    margin-top: 18px;
    color: #777382;
    line-height: 1.8;
}

#ird-local-ui .feature-content ul {
    margin-top: 28px;
    list-style: none;
}

#ird-local-ui .feature-content li {
    margin-bottom: 14px;
    color: #4f4a5a;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   PHONE MOCKUP
========================================================= */

#ird-local-ui .feature-visual {
    display: flex;
    justify-content: center;
}

#ird-local-ui .phone-mockup {
    position: relative;
    width: 260px;
    height: 470px;
    padding: 10px;
    border: 9px solid #1e1a28;
    border-radius: 38px;
    background: #1e1a28;
    box-shadow: 0 30px 60px rgba(31, 22, 55, 0.25);
    transform: rotate(5deg);
}

#ird-local-ui .phone-top {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 100px;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
    background: #1e1a28;
    z-index: 3;
}

#ird-local-ui .mock-reel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(160deg,
            #f79bc7,
            #9d6cf5,
            #5135b8);
}

#ird-local-ui .mock-instagram {
    position: absolute;
    top: 45px;
    left: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

#ird-local-ui .mock-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding-left: 4px;
    font-size: 23px;
}


/* =========================================================
   FOOTER
========================================================= */

#ird-local-ui .site-footer {
    padding: 28px 0;
    background: #191625;
    color: #a8a4b1;
    font-size: 13px;
}

#ird-local-ui .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    #ird-local-ui .hero {
        padding: 70px 0 60px;
    }

    #ird-local-ui .steps-grid {
        grid-template-columns: 1fr;
    }

    #ird-local-ui .feature-box {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    #ird-local-ui .feature-visual {
        margin-top: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    #ird-local-ui .container {
        padding: 0 16px;
    }

    #ird-local-ui .site-header {
        height: 68px;
    }

    #ird-local-ui .header-nav {
        display: none;
    }

    #ird-local-ui .hero {
        padding: 55px 0 50px;
    }

    #ird-local-ui .download-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 12px;
    }

    #ird-local-ui .tab {
        white-space: nowrap;
        padding: 9px 14px;
    }

    #ird-local-ui .hero h1 {
        font-size: 37px;
        letter-spacing: -1.3px;
    }

    #ird-local-ui .hero-description {
        font-size: 15px;
    }

    #ird-local-ui .downloader-card {
        padding: 12px;
        border-radius: 18px;
    }

    #ird-local-ui #download-form {
        flex-direction: column;
    }

    #ird-local-ui .url-input-wrapper {
        width: 100%;
    }

    #ird-local-ui .process-button {
        width: 100%;
    }

    #ird-local-ui .trust-items {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-left: 10px;
    }

    #ird-local-ui .how-section,
#ird-local-ui .features-section {
        padding: 70px 0;
    }

    #ird-local-ui .section-heading h2,
#ird-local-ui .feature-content h2 {
        font-size: 32px;
    }

    #ird-local-ui .step-card {
        padding: 28px;
    }

    #ird-local-ui .feature-box {
        padding: 35px 22px;
        border-radius: 24px;
    }

    #ird-local-ui .phone-mockup {
        width: 220px;
        height: 400px;
    }

    #ird-local-ui .footer-inner {
        flex-direction: column;
        text-align: center;
    }

}

/* =========================================================
   PREMIUM HOW IT WORKS
========================================================= */

#ird-local-ui .how-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 5% 20%,
            rgba(108, 77, 246, 0.06),
            transparent 25%),
        radial-gradient(circle at 95% 80%,
            rgba(232, 67, 182, 0.06),
            transparent 25%),
        #ffffff;
}

#ird-local-ui .section-heading {
    position: relative;
    z-index: 2;
}

#ird-local-ui .section-label {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(108, 77, 246, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

#ird-local-ui .steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Connecting line */

#ird-local-ui .steps-grid::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 16%;
    width: 68%;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg,
            rgba(108, 77, 246, 0.15),
            rgba(232, 67, 182, 0.2));
}

#ird-local-ui .step-card {
    position: relative;
    z-index: 1;
    min-height: 265px;
    padding: 34px 30px 30px;
    overflow: hidden;
    border: 1px solid #eceaf2;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(42, 31, 72, 0.05);
}

#ird-local-ui .step-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(108, 77, 246, 0.07),
            rgba(232, 67, 182, 0.04));
    transition: 0.35s ease;
}

#ird-local-ui .step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 77, 246, 0.22);
    box-shadow: 0 25px 60px rgba(68, 45, 130, 0.12);
}

#ird-local-ui .step-card:hover::after {
    transform: scale(1.4);
}

#ird-local-ui .step-number {
    top: 24px;
    right: 26px;
    color: rgba(108, 77, 246, 0.12);
    font-size: 32px;
    font-weight: 900;
}

#ird-local-ui .step-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(108, 77, 246, 0.13),
            rgba(232, 67, 182, 0.1));
    font-size: 26px;
    transition: 0.3s ease;
}

#ird-local-ui .step-card:hover .step-icon {
    transform: rotate(-6deg) scale(1.08);
}

#ird-local-ui .step-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: #252033;
    font-size: 21px;
}

#ird-local-ui .step-card p {
    position: relative;
    z-index: 2;
    max-width: 280px;
    color: #817c8d;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   MOBILE FIX
========================================================= */

@media (max-width: 900px) {

    #ird-local-ui .steps-grid::before {
        display: none;
    }

    #ird-local-ui .step-card {
        min-height: auto;
    }

}

@media (max-width: 650px) {

    #ird-local-ui .how-section {
        padding: 75px 0;
    }

    #ird-local-ui .step-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    #ird-local-ui .step-number {
        font-size: 28px;
    }

}

/* =========================================================
   PREMIUM FEATURES SECTION
========================================================= */

#ird-local-ui .features-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(108, 77, 246, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(232, 67, 182, 0.07),
            transparent 28%
        ),
        #faf9fd;
}

#ird-local-ui .feature-box {
    position: relative;
    gap: 80px;
    padding: 75px;
    overflow: hidden;
    border: 1px solid rgba(108, 77, 246, 0.1);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 25px 70px rgba(45, 30, 80, 0.08);
}

#ird-local-ui .feature-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(108, 77, 246, 0.07);
    filter: blur(20px);
}

#ird-local-ui .feature-content {
    position: relative;
    z-index: 2;
}

#ird-local-ui .feature-content h2 {
    max-width: 520px;
    margin-top: 6px;
    font-size: clamp(34px, 4vw, 52px);
}

#ird-local-ui .feature-content > p {
    max-width: 520px;
    margin-top: 20px;
    font-size: 16px;
}

#ird-local-ui .feature-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
}

#ird-local-ui .feature-content li {
    display: flex;
    align-items: center;
    min-height: 56px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #eceaf2;
    border-radius: 14px;
    background: #ffffff;
    font-size: 14px;
    transition: 0.25s ease;
}

#ird-local-ui .feature-content li:hover {
    transform: translateY(-3px);
    border-color: rgba(108, 77, 246, 0.25);
    box-shadow: 0 12px 28px rgba(70, 50, 120, 0.08);
}


/* =========================================================
   PREMIUM PHONE VISUAL
========================================================= */

#ird-local-ui .feature-visual {
    position: relative;
    z-index: 2;
}

#ird-local-ui .phone-mockup {
    transition: transform 0.4s ease;
}

#ird-local-ui .feature-visual:hover .phone-mockup {
    transform: rotate(0deg) translateY(-8px);
}

#ird-local-ui .mock-reel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,0.35),
            transparent 20%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.25)
        );
}

#ird-local-ui .mock-instagram,
#ird-local-ui .mock-play {
    z-index: 2;
}

#ird-local-ui .mock-play {
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {

    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255,255,255,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    #ird-local-ui .feature-box {
        gap: 45px;
        padding: 55px 40px;
    }

}

@media (max-width: 650px) {

    #ird-local-ui .features-section {
        padding: 75px 0;
    }

    #ird-local-ui .feature-box {
        padding: 38px 22px;
        border-radius: 24px;
    }

    #ird-local-ui .feature-content ul {
        grid-template-columns: 1fr;
    }

    #ird-local-ui .feature-content h2 {
        font-size: 34px;
    }

    #ird-local-ui .phone-mockup {
        transform: rotate(3deg);
    }

}

/* =========================================================
   PREMIUM HEADER
========================================================= */

#ird-local-ui .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(108, 77, 246, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.3s ease;
}

#ird-local-ui .brand-icon {
    position: relative;
    overflow: hidden;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #6c4df6,
        #a94bea,
        #e843b6
    );
    box-shadow: 0 8px 20px rgba(108, 77, 246, 0.25);
}

#ird-local-ui .brand-icon::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    top: -40px;
    left: -30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

#ird-local-ui .brand-icon span {
    position: relative;
    z-index: 2;
}

#ird-local-ui .brand-name {
    font-size: 21px;
    letter-spacing: -0.5px;
}

#ird-local-ui .header-nav {
    gap: 8px;
}

#ird-local-ui .header-nav a {
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

#ird-local-ui .header-nav a:hover {
    background: rgba(108, 77, 246, 0.08);
    color: var(--primary);
}


/* =========================================================
   PREMIUM FOOTER
========================================================= */

#ird-local-ui .site-footer {
    position: relative;
    overflow: hidden;
    padding: 42px 0;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(108, 77, 246, 0.18),
            transparent 30%
        ),
        #171421;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#ird-local-ui .site-footer::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(232, 67, 182, 0.12);
    filter: blur(40px);
}

#ird-local-ui .footer-inner {
    position: relative;
    z-index: 2;
    align-items: center;
    color: #aaa5b8;
}

#ird-local-ui .footer-inner div:first-child {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   MOBILE HEADER + FOOTER
========================================================= */

@media (max-width: 650px) {

    #ird-local-ui .site-header {
        height: 70px;
    }

    #ird-local-ui .brand-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    #ird-local-ui .brand-name {
        font-size: 18px;
    }

    #ird-local-ui .header-nav {
        display: none;
    }

    #ird-local-ui .site-footer {
        padding: 30px 0;
    }

    #ird-local-ui .footer-inner {
        gap: 10px;
        font-size: 12px;
    }

}
/* =========================================================
   FINAL UI POLISH & MICRO ANIMATIONS
========================================================= */

/* Smooth page rendering */
#ird-local-ui {
    overflow-x: hidden;
}

/* Hero content entrance */
#ird-local-ui .hero-content > * {
    animation: fadeInUp 0.7s ease both;
}

#ird-local-ui .hero-content > *:nth-child(1) {
    animation-delay: 0.05s;
}

#ird-local-ui .hero-content > *:nth-child(2) {
    animation-delay: 0.12s;
}

#ird-local-ui .hero-content > *:nth-child(3) {
    animation-delay: 0.2s;
}

#ird-local-ui .hero-content > *:nth-child(4) {
    animation-delay: 0.28s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   INPUT MICRO ANIMATION
========================================================= */

#ird-local-ui .url-input-wrapper {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

#ird-local-ui .url-input-wrapper:focus-within {
    transform: translateY(-1px);
}


/* =========================================================
   BUTTON MICRO INTERACTION
========================================================= */

#ird-local-ui .process-button,
#ird-local-ui .final-download-button,
#ird-local-ui .paste-button {
    -webkit-tap-highlight-color: transparent;
}

#ird-local-ui .process-button:active:not(:disabled),
#ird-local-ui .final-download-button:active,
#ird-local-ui .paste-button:active {
    transform: scale(0.97);
}


/* Download button shine effect */

#ird-local-ui .process-button::before,
#ird-local-ui .final-download-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.22),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

#ird-local-ui .process-button:hover:not(:disabled)::before,
#ird-local-ui .final-download-button:hover::before {
    left: 140%;
}


/* Required for shine effect */

#ird-local-ui .final-download-button {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   TRUST ITEM ANIMATION
========================================================= */

#ird-local-ui .trust-item {
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

#ird-local-ui .trust-item:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

#ird-local-ui .trust-item:hover .trust-icon {
    transform: rotate(-8deg) scale(1.08);
}

#ird-local-ui .trust-icon {
    transition: transform 0.25s ease;
}


/* =========================================================
   CARD POLISH
========================================================= */

#ird-local-ui .downloader-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

#ird-local-ui .downloader-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 80px rgba(70, 47, 125, 0.16);
}


/* =========================================================
   SUCCESS ANIMATION
========================================================= */

#ird-local-ui .result-area.show .result-icon {
    animation: successPop 0.55s cubic-bezier(
        0.34,
        1.56,
        0.64,
        1
    );
}

@keyframes successPop {

    0% {
        opacity: 0;
        transform: scale(0.3);
    }

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

}


/* =========================================================
   LOADING AREA SMOOTHNESS
========================================================= */

#ird-local-ui .loading-area.show {
    animation: loadingReveal 0.35s ease both;
}

@keyframes loadingReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SECTION VISUAL POLISH
========================================================= */

#ird-local-ui .step-card,
#ird-local-ui .feature-box {
    will-change: transform;
}

#ird-local-ui .step-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   BETTER MOBILE EXPERIENCE
========================================================= */

@media (max-width: 650px) {

    #ird-local-ui .hero h1 {
        line-height: 1.12;
    }

    #ird-local-ui .hero-description {
        margin-bottom: 28px;
    }

    #ird-local-ui .downloader-card:hover {
        transform: none;
    }

    #ird-local-ui .process-button {
        min-height: 56px;
    }

    #ird-local-ui .final-download-button {
        width: 100%;
    }

    #ird-local-ui .trust-items {
        margin-top: 28px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    #ird-local-ui *,
#ird-local-ui *::before,
#ird-local-ui *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}