:root {
    --brand-text: #F8FAFC;
    --brand-blue: #38A8FF;
    --brand-product: #C7D4E5;
    --page-bg: #06172C;
    --page-bg-deep: #020A16;
    --panel: rgba(8, 30, 55, 0.78);
    --line: rgba(87, 164, 221, 0.22);
    --muted: #9FB3C8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: var(--brand-text);
    background:
        radial-gradient(circle at 48% -18%, rgba(24, 121, 209, 0.22), transparent 42%),
        linear-gradient(145deg, var(--page-bg) 0%, #041226 52%, var(--page-bg-deep) 100%);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(56, 168, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 168, 255, 0.055) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 75%, transparent);
}

.ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ambient-one {
    width: 520px;
    height: 520px;
    top: -300px;
    left: 42%;
    background: rgba(0, 117, 255, 0.18);
}

.ambient-two {
    width: 430px;
    height: 430px;
    right: -220px;
    bottom: -190px;
    background: rgba(37, 202, 255, 0.1);
}

.site-header {
    width: min(100% - 48px, 1200px);
    min-height: 104px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 20;
}

.appwise-product-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.appwise-product-brand img {
    display: block;
    width: 220px;
    height: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-picker {
    position: relative;
}

.language-trigger,
.sign-in-button {
    min-height: 42px;
    border-radius: 11px;
    font: 700 14px/1 "Inter", ui-sans-serif, system-ui, sans-serif;
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid rgba(79, 148, 204, 0.38);
    color: #DDEBFA;
    background: rgba(7, 24, 45, 0.76);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
    border-color: rgba(56, 168, 255, 0.75);
    background: rgba(9, 39, 70, 0.94);
}

.language-globe {
    width: 15px;
    height: 15px;
    position: relative;
    border: 1.5px solid var(--brand-blue);
    border-radius: 50%;
}

.language-globe::before,
.language-globe::after {
    content: "";
    position: absolute;
    inset: 2px 5px;
    border-left: 1px solid var(--brand-blue);
    border-right: 1px solid var(--brand-blue);
    border-radius: 50%;
}

.language-globe::after {
    inset: 6px 1px auto;
    height: 1px;
    border: 0;
    background: var(--brand-blue);
}

.language-chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #8EA7BF;
    border-bottom: 1.5px solid #8EA7BF;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.language-trigger[aria-expanded="true"] .language-chevron {
    transform: translateY(2px) rotate(225deg);
}

.language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 9px);
    inset-inline-end: 0;
    width: 228px;
    max-height: min(430px, calc(100vh - 130px));
    overflow-y: auto;
    padding: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    border: 1px solid rgba(65, 124, 173, 0.38);
    border-radius: 14px;
    background: rgba(4, 17, 32, 0.98);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.48);
}

.language-menu.is-open {
    display: grid;
}

.language-option {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 6px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #AFC1D3;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.language-option span {
    white-space: nowrap;
}

.language-option:hover {
    color: #FFFFFF;
    background: rgba(56, 168, 255, 0.14);
}

.language-option.is-active {
    border-color: rgba(56, 168, 255, 0.72);
    color: #FFFFFF;
    background: rgba(56, 168, 255, 0.22);
}

.sign-in-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid rgba(56, 168, 255, 0.55);
    color: #F5FAFF;
    background: linear-gradient(135deg, #187DCA, #0868B7);
    box-shadow: 0 8px 24px rgba(0, 113, 203, 0.24);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.sign-in-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex: 0 0 16px;
}

.sign-in-icon::before {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    width: 7px;
    height: 14px;
    border: 1.5px solid currentColor;
    border-left: 0;
    border-radius: 0 3px 3px 0;
    opacity: 0.9;
}

.sign-in-icon::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 1px;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.sign-in-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 133, 235, 0.34);
}

.coming-main {
    min-height: calc(100vh - 184px);
    display: grid;
    align-items: center;
    padding: 42px 24px 72px;
    position: relative;
    z-index: 2;
}

.hero {
    width: min(100%, 1160px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    align-items: center;
    gap: clamp(42px, 7vw, 94px);
}

.hero-copy {
    min-width: 0;
}

.coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid rgba(56, 168, 255, 0.44);
    border-radius: 999px;
    color: #7FD0FF;
    background: rgba(19, 85, 132, 0.24);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.coming-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45C8FF;
    box-shadow: 0 0 12px rgba(69, 200, 255, 0.9);
}

h1 {
    margin: 24px 0 22px;
    font-size: clamp(43px, 5.4vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.052em;
}

h1 span {
    display: block;
}

h1 span:first-child {
    color: #FFFFFF;
}

h1 span:last-child {
    color: #8DCAFA;
}

.hero-lead {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid rgba(72, 135, 187, 0.28);
    border-radius: 11px;
    color: #C6D7E7;
    background: rgba(7, 25, 46, 0.62);
    font-size: 13px;
}

.feature-tag b {
    font-weight: 600;
}

.feature-tag i {
    width: 19px;
    height: 19px;
    position: relative;
    flex: 0 0 19px;
    color: var(--brand-blue);
}

.feature-quote i {
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

.feature-quote i::before,
.feature-quote i::after {
    content: "";
    position: absolute;
    left: 4px;
    width: 9px;
    height: 1px;
    background: currentColor;
}

.feature-quote i::before { top: 5px; }
.feature-quote i::after { top: 10px; }

.feature-people i::before,
.feature-people i::after {
    content: "";
    position: absolute;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.feature-people i::before {
    width: 6px;
    height: 6px;
    top: 1px;
    left: 6px;
}

.feature-people i::after {
    width: 15px;
    height: 8px;
    left: 2px;
    bottom: 1px;
    border-radius: 8px 8px 3px 3px;
}

.feature-deal i::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.feature-deal i::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 7px;
    top: 3px;
    left: 5px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: skewY(-28deg);
}

.feature-report i {
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.feature-report i::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 3px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
}

.deal-visual {
    width: min(100%, 430px);
    aspect-ratio: 1 / 0.95;
    justify-self: end;
    position: relative;
    isolation: isolate;
}

.deal-visual::before {
    content: "";
    position: absolute;
    inset: 11% 7% 5%;
    z-index: -2;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 148, 229, 0.2), rgba(6, 23, 44, 0) 68%);
    filter: blur(4px);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(70, 165, 231, 0.16);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.orbit-one { inset: 8% 4% 7%; }
.orbit-two { inset: 18% 14% 17%; }

.quote-card {
    position: absolute;
    width: 58%;
    height: 70%;
    top: 10%;
    left: 18%;
    padding: 24px 22px;
    border: 1px solid rgba(88, 173, 233, 0.38);
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(13, 49, 83, 0.98), rgba(5, 20, 39, 0.96));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.04);
    transform: rotate(-4deg);
}

.quote-card-top,
.quote-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quote-mark {
    width: 39px;
    height: 39px;
    border-radius: 11px;
    background:
        linear-gradient(135deg, transparent 42%, #8AD9FF 43% 52%, transparent 53%),
        rgba(56, 168, 255, 0.14);
    border: 1px solid rgba(56, 168, 255, 0.35);
}

.quote-status {
    width: 46px;
    height: 18px;
    border-radius: 99px;
    background: rgba(35, 210, 159, 0.16);
    border: 1px solid rgba(68, 231, 180, 0.32);
}

.quote-line {
    height: 8px;
    margin-top: 21px;
    border-radius: 99px;
    background: rgba(199, 218, 235, 0.22);
}

.quote-line-long { width: 78%; }
.quote-line-medium { width: 52%; margin-top: 10px; }

.quote-items {
    display: grid;
    gap: 11px;
    margin-top: 27px;
}

.quote-items span {
    height: 31px;
    border-radius: 7px;
    border: 1px solid rgba(101, 153, 195, 0.16);
    background:
        linear-gradient(90deg, rgba(56, 168, 255, 0.22) 0 8%, transparent 8% 68%, rgba(192, 216, 236, 0.17) 68% 91%, transparent 91%);
}

.quote-total {
    margin-top: 22px;
}

.quote-total span,
.quote-total strong {
    display: block;
    height: 9px;
    border-radius: 99px;
}

.quote-total span { width: 38%; background: rgba(196, 215, 232, 0.18); }
.quote-total strong { width: 31%; background: rgba(56, 168, 255, 0.72); }

.approval-mark {
    position: absolute;
    right: -25px;
    bottom: -24px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 7px solid #0A2745;
    background: linear-gradient(145deg, #39D6A7, #139E7B);
    box-shadow: 0 14px 32px rgba(11, 168, 126, 0.3);
}

.approval-mark::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 12px;
    top: 19px;
    left: 17px;
    border-left: 5px solid #F2FFFB;
    border-bottom: 5px solid #F2FFFB;
    transform: rotate(-45deg);
}

.sales-chart {
    position: absolute;
    width: 48%;
    height: 34%;
    right: 1%;
    bottom: 1%;
    border: 1px solid rgba(82, 159, 214, 0.3);
    border-radius: 16px;
    background: rgba(5, 25, 46, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.chart-bar {
    position: absolute;
    bottom: 20px;
    width: 10px;
    border-radius: 4px 4px 2px 2px;
    background: rgba(56, 168, 255, 0.2);
}

.bar-one { left: 23px; height: 25px; }
.bar-two { left: 43px; height: 39px; }
.bar-three { left: 63px; height: 55px; }

.chart-segment {
    position: absolute;
    height: 3px;
    border-radius: 99px;
    background: #45C5FF;
    transform-origin: left center;
    box-shadow: 0 0 9px rgba(69, 197, 255, 0.55);
}

.segment-one { width: 43px; left: 25px; top: 73px; transform: rotate(-23deg); }
.segment-two { width: 48px; left: 64px; top: 56px; transform: rotate(12deg); }
.segment-three { width: 46px; left: 110px; top: 66px; transform: rotate(-36deg); }

.chart-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    right: 25px;
    top: 34px;
    border-top: 3px solid #45C5FF;
    border-right: 3px solid #45C5FF;
    transform: rotate(5deg);
}

.customer-node {
    position: absolute;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(92, 181, 240, 0.38);
    border-radius: 50%;
    background: #092845;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.customer-node span {
    width: 20px;
    height: 20px;
    position: relative;
}

.customer-node span::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 6px;
    border: 2px solid #70CBFF;
    border-radius: 50%;
}

.customer-node span::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 8px;
    left: 1px;
    bottom: 0;
    border: 2px solid #70CBFF;
    border-radius: 10px 10px 4px 4px;
}

.node-one { top: 5%; right: 7%; }
.node-two { top: 47%; left: 0; width: 42px; height: 42px; }
.node-three { right: 16%; bottom: 4%; width: 40px; height: 40px; }

.site-footer {
    width: min(100% - 48px, 1200px);
    min-height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(63, 116, 160, 0.22);
}

.appwise-labs-link {
    display: inline-flex;
    flex: 0 0 auto;
}

.appwise-labs-link img {
    display: block;
    width: 106px;
    height: 38px;
    object-fit: contain;
    object-position: left center;
    opacity: 0.86;
}

.site-footer p {
    margin: 0;
    padding-inline-start: 18px;
    border-inline-start: 1px solid rgba(148, 163, 184, 0.24);
    color: #7189A1;
    font-size: 12px;
    line-height: 1.5;
}

[dir="rtl"] .deal-visual {
    transform: scaleX(-1);
}

@media (max-width: 900px) {
    .site-header {
        width: min(100% - 36px, 760px);
    }

    .coming-main {
        padding-top: 32px;
    }

    .hero {
        max-width: 760px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .feature-tags {
        justify-content: center;
    }

    .deal-visual {
        width: min(100%, 390px);
        justify-self: center;
    }

    .site-footer {
        width: min(100% - 36px, 760px);
    }
}

@media (max-width: 600px) {
    .site-header {
        width: calc(100% - 28px);
        min-height: 86px;
        gap: 12px;
    }

    .appwise-product-brand img {
        width: 160px;
    }

    .header-actions {
        gap: 7px;
    }

    .language-trigger,
    .sign-in-button {
        min-height: 38px;
        font-size: 12px;
    }

    .language-trigger {
        gap: 6px;
        padding: 0 10px;
    }

    .language-globe {
        display: none;
    }

    .sign-in-button {
        padding: 0 12px;
    }

    .language-menu {
        position: fixed;
        top: 76px;
        right: 14px;
        left: 14px;
        width: auto;
        max-height: calc(100vh - 92px);
    }

    .coming-main {
        min-height: calc(100vh - 156px);
        padding: 26px 18px 52px;
    }

    h1 {
        margin-top: 20px;
        font-size: clamp(37px, 11vw, 50px);
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.58;
    }

    .feature-tags {
        gap: 8px;
        margin-top: 27px;
    }

    .feature-tag {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        padding-inline: 8px;
        font-size: 12px;
    }

    .deal-visual {
        width: min(100%, 330px);
    }

    .quote-card {
        padding: 19px 17px;
    }

    .site-footer {
        width: calc(100% - 28px);
        min-height: 72px;
        gap: 12px;
    }

    .appwise-labs-link img {
        width: 82px;
        height: 31px;
    }

    .site-footer p {
        padding-inline-start: 12px;
        font-size: 10px;
    }
}

@media (max-width: 430px) {
    .site-header {
        align-items: flex-start;
        padding-block: 15px;
    }

    .appwise-product-brand img {
        width: 145px;
    }

    .language-trigger {
        min-width: 42px;
    }

    .language-trigger .language-chevron {
        display: none;
    }

    .sign-in-button {
        position: absolute;
        top: 58px;
        right: 0;
    }

    [dir="rtl"] .sign-in-button {
        right: auto;
        left: 0;
    }

    .coming-main {
        padding-top: 54px;
    }

    .feature-tag {
        flex-basis: 100%;
    }

    .site-footer {
        align-items: flex-start;
        padding-block: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
