:root {
    --bg: #06101c;
    --bg-deep: #040a12;
    --surface: rgba(12, 26, 44, 0.76);
    --surface-solid: #0c1a2c;
    --surface-light: #11243b;
    --line: rgba(153, 186, 231, 0.14);
    --line-bright: rgba(117, 162, 255, 0.26);
    --text: #f5f8ff;
    --muted: #9dadc2;
    --muted-bright: #c4d0df;
    --blue: #3f7cff;
    --blue-bright: #6d97ff;
    --violet: #8a67ff;
    --cyan: #4ee6ff;
    --green: #49d89b;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: min(1180px, calc(100vw - 48px));
    --header-height: 80px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    background: var(--bg-deep);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 3%, rgba(30, 90, 205, 0.13), transparent 30rem),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Noto Sans", "Noto Sans Arabic", "Noto Sans Devanagari", "Noto Sans Bengali", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select {
    font: inherit;
}

button,
a,
select {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.narrow-shell {
    width: min(820px, calc(100vw - 48px));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    inset-inline-start: 10px;
    z-index: 1000;
    padding: 10px 14px;
    color: #06101c;
    background: #fff;
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(100, 153, 255, 0.9);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.content-page .site-header {
    background: rgba(5, 13, 23, 0.82);
    border-color: var(--line);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 760;
    letter-spacing: -0.035em;
    direction: ltr;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: linear-gradient(140deg, #2e6cff, #824eff);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 11px;
    box-shadow: 0 8px 28px rgba(56, 105, 255, 0.36), inset 0 1px rgba(255, 255, 255, 0.16);
}

.brand-mark svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 34px);
    margin-inline: auto;
}

.desktop-nav a {
    color: var(--muted-bright);
    font-size: 14px;
    font-weight: 570;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.language-form {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 116px;
    height: 40px;
    color: var(--muted-bright);
    background: rgba(15, 32, 53, 0.7);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.language-icon {
    position: absolute;
    inset-inline-start: 11px;
    top: 50%;
    pointer-events: none;
    font-size: 18px;
    line-height: 1;
    transform: translateY(-52%);
}

.language-form select {
    width: 100%;
    height: 100%;
    padding-inline: 35px 26px;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: 0;
    appearance: none;
    direction: ltr;
    font-size: 13px;
    font-weight: 620;
}

.language-form::after {
    position: absolute;
    inset-inline-end: 11px;
    top: 48%;
    width: 6px;
    height: 6px;
    pointer-events: none;
    content: "";
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
}

.language-form option {
    color: #07101d;
    background: #fff;
}

.mini-store-badge {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 15px;
    color: #dbe6ff;
    background: linear-gradient(135deg, rgba(58, 112, 255, 0.24), rgba(128, 83, 255, 0.18));
    border: 1px solid rgba(105, 145, 255, 0.3);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 650;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    color: #fff;
    cursor: pointer;
    background: rgba(15, 32, 53, 0.8);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.8px) rotate(-45deg);
}

.mobile-menu {
    background: rgba(5, 13, 23, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mobile-menu nav {
    display: grid;
    gap: 0;
    padding-block: 10px 18px;
}

.mobile-menu a {
    padding: 12px 2px;
    color: var(--muted-bright);
    border-bottom: 1px solid rgba(153, 186, 231, 0.1);
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 70px);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(53, 101, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(53, 101, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-glow {
    position: absolute;
    pointer-events: none;
    filter: blur(2px);
    border-radius: 50%;
}

.hero-glow-one {
    top: -240px;
    inset-inline-end: -180px;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(41, 91, 237, 0.22), transparent 68%);
}

.hero-glow-two {
    top: 250px;
    inset-inline-start: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 65, 255, 0.11), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.25fr);
    align-items: center;
    gap: clamp(30px, 4vw, 70px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 590px;
    padding-bottom: 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #abc3ff;
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 23px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 0 10px var(--blue);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(50px, 5.25vw, 76px);
    font-weight: 720;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero h1 span {
    display: block;
    width: fit-content;
    margin-top: 7px;
    color: transparent;
    background: linear-gradient(90deg, #7da5ff 0%, #8e70ff 58%, #60d4ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lede {
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--muted-bright);
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 20px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    min-height: 62px;
    padding: 9px 20px;
    color: #fff;
    cursor: default;
    background: linear-gradient(135deg, #3674ff, #734dff);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    box-shadow: 0 15px 40px rgba(54, 102, 247, 0.3), inset 0 1px rgba(255, 255, 255, 0.16);
    line-height: 1.1;
    direction: ltr;
}

.store-button svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: currentColor;
}

.store-button > span {
    display: grid;
    gap: 3px;
    text-align: start;
    font-size: 16px;
    font-weight: 710;
    direction: inherit;
}

.store-button small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dbe6f7;
    font-size: 14px;
    font-weight: 660;
}

.text-link span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #a8c0ff;
    background: rgba(91, 134, 242, 0.12);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}

.text-link:hover span {
    background: rgba(91, 134, 242, 0.22);
    transform: translateY(2px);
}

.launch-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.launch-note > span {
    position: relative;
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(73, 216, 155, 0.1), 0 0 14px rgba(73, 216, 155, 0.6);
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.visual-frame {
    position: relative;
    aspect-ratio: 1.19;
    overflow: hidden;
    background: #030814;
    border: 1px solid rgba(106, 150, 255, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45), 0 0 80px rgba(36, 91, 236, 0.13), inset 0 1px rgba(255, 255, 255, 0.08);
}

.visual-frame::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: inherit;
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 59% center;
    filter: saturate(1.02) contrast(1.02);
}

.visual-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 8, 20, 0.48), transparent 35%), linear-gradient(0deg, rgba(3, 8, 20, 0.34), transparent 35%);
}

.link-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 205px;
    padding: 12px 14px;
    background: rgba(10, 24, 44, 0.74);
    border: 1px solid rgba(144, 177, 255, 0.22);
    border-radius: 15px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px) saturate(150%);
    direction: ltr;
}

.link-card-top {
    top: 7%;
    inset-inline-end: 5%;
    animation: float-card 5s ease-in-out infinite;
}

.link-card-bottom {
    bottom: 7%;
    inset-inline-start: 5%;
    animation: float-card 5s ease-in-out -2.2s infinite;
}

.link-card > span:last-child {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.link-card strong {
    overflow: hidden;
    color: #f3f7ff;
    font-size: 12px;
    font-weight: 690;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-card small {
    overflow: hidden;
    color: #8fa4bf;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-icon {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #3d7cff, #7951ff);
    border-radius: 10px;
    box-shadow: 0 7px 20px rgba(61, 124, 255, 0.4);
    font-size: 14px;
}

.pulse-dot {
    width: 11px;
    height: 11px;
    margin: 10px;
    flex: 0 0 auto;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(73, 216, 155, 0.09), 0 0 16px rgba(73, 216, 155, 0.55);
}

.trust-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 58px;
    padding: 22px 28px;
    color: #aebcd0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

.trust-row div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-inline: clamp(18px, 4vw, 48px);
    border-inline-end: 1px solid var(--line);
}

.trust-row div:last-child {
    border: 0;
}

.trust-row span {
    color: var(--green);
}

.section {
    position: relative;
    padding-block: clamp(92px, 10vw, 145px);
}

.section-heading {
    max-width: 690px;
    margin-bottom: 58px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.bridge-copy h2,
.faq-heading h2,
.final-cta h2,
.page-hero h1 {
    margin-bottom: 19px;
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 700;
    letter-spacing: -0.052em;
    line-height: 1.06;
}

.section-heading p,
.bridge-copy > p,
.faq-heading > p,
.final-cta p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.how-section {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 25, 44, 0.24), rgba(6, 16, 28, 0));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step-card {
    position: relative;
    min-height: 345px;
    padding: 26px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(17, 37, 62, 0.84), rgba(9, 21, 36, 0.82));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.step-card:hover {
    background: linear-gradient(155deg, rgba(20, 43, 73, 0.92), rgba(10, 23, 41, 0.9));
    border-color: var(--line-bright);
    transform: translateY(-5px);
}

.step-card::before {
    position: absolute;
    top: -90px;
    inset-inline-end: -70px;
    width: 190px;
    height: 190px;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle, rgba(55, 104, 245, 0.17), transparent 68%);
}

.step-number {
    color: #71839b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.step-icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin: 30px auto 33px;
    color: #c7d7ff;
    background: radial-gradient(circle at 35% 30%, rgba(93, 142, 255, 0.24), rgba(41, 75, 146, 0.09));
    border: 1px solid rgba(116, 155, 255, 0.21);
    border-radius: 27px;
    box-shadow: inset 0 0 24px rgba(58, 100, 210, 0.1), 0 17px 40px rgba(0, 0, 0, 0.22);
}

.phone-glyph {
    position: relative;
    width: 31px;
    height: 51px;
    border: 2px solid currentColor;
    border-radius: 9px;
}

.phone-glyph::before {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 10px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 4px;
    transform: translateX(-50%);
}

.phone-glyph i {
    position: absolute;
    inset: 13px 5px 8px;
    background: linear-gradient(145deg, #467eff, #815dff);
    border-radius: 4px;
}

.share-glyph,
.link-glyph,
.spark-glyph {
    font-size: 42px;
    font-weight: 250;
    line-height: 1;
    text-shadow: 0 0 26px rgba(82, 130, 255, 0.55);
}

.link-glyph {
    font-size: 54px;
    transform: rotate(-34deg);
}

.spark-glyph {
    color: #b8caff;
    font-size: 38px;
}

.step-card h3,
.privacy-card h3 {
    margin-bottom: 9px;
    font-size: 19px;
    font-weight: 680;
    letter-spacing: -0.025em;
}

.step-card p,
.privacy-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
}

.bridge-section {
    overflow: hidden;
}

.bridge-section::before {
    position: absolute;
    inset: 10% -10%;
    pointer-events: none;
    content: "";
    background: radial-gradient(ellipse at center, rgba(40, 91, 230, 0.08), transparent 55%);
}

.bridge-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    align-items: center;
    gap: clamp(55px, 8vw, 110px);
}

.bridge-copy {
    max-width: 500px;
}

.feature-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted-bright);
    font-size: 14px;
}

.feature-list li span {
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    margin-top: 1px;
    color: #99b5ff;
    background: rgba(74, 116, 229, 0.13);
    border: 1px solid rgba(115, 151, 240, 0.22);
    border-radius: 50%;
    font-size: 10px;
}

.flow-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 470px;
    padding: 54px 38px;
    background:
        radial-gradient(circle at center, rgba(62, 103, 218, 0.17), transparent 55%),
        linear-gradient(155deg, rgba(13, 30, 51, 0.72), rgba(6, 16, 29, 0.65));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
    direction: ltr;
}

.flow-panel::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.4;
    background-image: radial-gradient(rgba(116, 149, 217, 0.17) 1px, transparent 1px);
    background-size: 19px 19px;
    mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.flow-card {
    position: relative;
    z-index: 2;
    width: 168px;
    height: 292px;
    padding: 16px;
    background: linear-gradient(160deg, #142a48, #091525);
    border: 1px solid rgba(149, 179, 242, 0.2);
    border-radius: 25px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.05);
}

.screenshot-card {
    transform: rotate(-5deg);
}

.ai-card {
    transform: rotate(5deg);
}

.mock-status {
    display: block;
    width: 30px;
    height: 5px;
    margin: 0 auto 20px;
    background: #4d5d75;
    border-radius: 10px;
}

.mock-image {
    position: relative;
    height: 126px;
    overflow: hidden;
    background: linear-gradient(145deg, #174bb1, #6d4ec7);
    border-radius: 12px;
}

.mock-image::before,
.mock-image::after {
    position: absolute;
    bottom: -2px;
    content: "";
    background: linear-gradient(145deg, #5186ef, #274d9d);
    transform: rotate(45deg);
}

.mock-image::before {
    left: 18px;
    width: 70px;
    height: 70px;
}

.mock-image::after {
    right: 4px;
    width: 86px;
    height: 86px;
    background: linear-gradient(145deg, #7b74e9, #345ab7);
}

.screenshot-card > span:not(.mock-status) {
    display: block;
    width: 86%;
    height: 7px;
    margin-top: 17px;
    background: #2c4566;
    border-radius: 8px;
}

.screenshot-card > span:last-child {
    width: 59%;
    margin-top: 9px;
}

.flow-line {
    position: relative;
    z-index: 1;
    width: clamp(62px, 8vw, 105px);
    height: 2px;
    background: linear-gradient(90deg, rgba(70, 125, 255, 0.25), #5a87ff, rgba(133, 91, 255, 0.25));
    box-shadow: 0 0 14px rgba(86, 128, 255, 0.45);
}

.flow-line i {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    background: #9bb6ff;
    border-radius: 50%;
    box-shadow: 0 0 12px #5f8bff;
    transform: translate(-50%, -50%);
    animation: transfer-dot 2.4s ease-in-out infinite;
}

.flow-line b {
    position: absolute;
    top: -35px;
    left: 50%;
    padding: 5px 10px;
    color: #aebde0;
    background: rgba(12, 27, 47, 0.85);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 8px;
    letter-spacing: 0.16em;
    transform: translateX(-50%);
}

.ai-spark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 24px auto 35px;
    color: #fff;
    background: linear-gradient(135deg, #397aff, #8857ff);
    border-radius: 15px;
    box-shadow: 0 0 28px rgba(86, 116, 255, 0.42);
    font-size: 20px;
}

.ai-card > span {
    display: block;
    width: 82%;
    height: 7px;
    margin: 11px auto;
    background: #2b4465;
    border-radius: 10px;
}

.ai-card > span:nth-of-type(2) {
    width: 65%;
}

.ai-card > span:nth-of-type(3) {
    width: 73%;
}

.typing-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 30px;
}

.typing-dots i {
    width: 5px;
    height: 5px;
    background: #7187a8;
    border-radius: 50%;
}

.delete-chip {
    position: absolute;
    z-index: 3;
    bottom: 33px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    color: #badbcf;
    background: rgba(8, 31, 34, 0.78);
    border: 1px solid rgba(73, 216, 155, 0.22);
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(10px);
    font-size: 10px;
    transform: translateX(-50%);
}

.delete-chip span {
    color: var(--green);
}

.privacy-section {
    background: linear-gradient(180deg, rgba(10, 27, 47, 0.28), rgba(5, 13, 23, 0.16));
    border-top: 1px solid rgba(153, 186, 231, 0.06);
    border-bottom: 1px solid rgba(153, 186, 231, 0.06);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 80px;
    max-width: none;
}

.split-heading h2 {
    margin-bottom: 0;
}

.split-heading p {
    margin-bottom: 3px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.privacy-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    background: rgba(11, 26, 44, 0.78);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.privacy-card::after {
    position: absolute;
    width: 190px;
    height: 190px;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle, rgba(74, 118, 240, 0.12), transparent 65%);
    border-radius: 50%;
}

.privacy-card-1,
.privacy-card-4 {
    grid-column: span 7;
}

.privacy-card-2,
.privacy-card-3 {
    grid-column: span 5;
}

.privacy-card-1::after,
.privacy-card-3::after {
    top: -80px;
    inset-inline-end: -40px;
}

.privacy-card-2::after,
.privacy-card-4::after {
    bottom: -90px;
    inset-inline-start: -30px;
}

.privacy-card-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 50px;
    color: #b3c8ff;
    background: linear-gradient(145deg, rgba(62, 115, 255, 0.18), rgba(120, 78, 255, 0.1));
    border: 1px solid rgba(122, 158, 250, 0.2);
    border-radius: 15px;
    font-size: 24px;
}

.privacy-card h3 {
    font-size: 21px;
}

.privacy-card p {
    max-width: 500px;
}

.ai-section {
    padding-block: 95px;
}

.ai-shell {
    text-align: center;
}

.ai-shell > p {
    margin-bottom: 14px;
    color: #8396b0;
    font-size: 11px;
    font-weight: 720;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-shell h2 {
    margin-bottom: 40px;
    font-size: clamp(31px, 3.5vw, 45px);
    font-weight: 680;
    letter-spacing: -0.045em;
}

.ai-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-pills span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    padding: 0 16px;
    color: #bac7d8;
    background: rgba(13, 29, 49, 0.68);
    border: 1px solid var(--line);
    border-radius: 13px;
    font-size: 13px;
    font-weight: 600;
    direction: ltr;
}

.brand-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.dot-green { color: #59ccac; }
.dot-orange { color: #e79163; }
.dot-blue { color: #5e91ff; }
.dot-purple { color: #9c7dff; }
.dot-white { color: #d8e0ed; }

.ai-pills .any-ai {
    color: #a7bdff;
    background: linear-gradient(135deg, rgba(44, 91, 214, 0.18), rgba(105, 69, 206, 0.15));
}

.ai-shell > small {
    display: block;
    max-width: 670px;
    margin: 22px auto 0;
    color: #687990;
    font-size: 10px;
}

.faq-section {
    background: rgba(7, 18, 31, 0.46);
    border-top: 1px solid rgba(153, 186, 231, 0.06);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.25fr);
    gap: clamp(65px, 10vw, 130px);
}

.faq-heading {
    position: sticky;
    top: 130px;
    align-self: start;
}

.faq-heading h2 {
    font-size: clamp(38px, 4.2vw, 54px);
}

.faq-heading .text-link {
    margin-top: 10px;
}

.faq-heading .text-link:hover span {
    transform: translateX(3px);
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item h2,
.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    display: grid;
    grid-template-columns: 1fr 24px;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 25px 0;
    color: #e7edf7;
    cursor: pointer;
    text-align: start;
    background: transparent;
    border: 0;
    font-size: 16px;
    font-weight: 620;
    line-height: 1.45;
}

.accordion-item button > span {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    content: "";
    background: #8da6ca;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
}

.accordion-item button > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] > span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
    overflow: hidden;
}

.accordion-panel p {
    max-width: 670px;
    padding: 0 40px 25px 0;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.74;
}

[dir="rtl"] .accordion-panel p {
    padding: 0 0 25px 40px;
}

.final-cta-section {
    padding-top: 115px;
    overflow: hidden;
}

.final-cta {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 480px;
    padding: 60px 24px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 120%, rgba(57, 109, 255, 0.32), transparent 55%),
        linear-gradient(145deg, #0b1d36, #091426);
    border: 1px solid rgba(118, 156, 247, 0.22);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
}

.final-cta::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(90deg, rgba(105, 144, 232, 0.04) 1px, transparent 1px), linear-gradient(rgba(105, 144, 232, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle, black, transparent 75%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    margin-bottom: 29px;
}

.cta-orbit {
    position: absolute;
    width: 480px;
    height: 480px;
    pointer-events: none;
    border: 1px solid rgba(89, 133, 246, 0.1);
    border-radius: 50%;
}

.orbit-one {
    top: -360px;
    inset-inline-start: -90px;
}

.orbit-two {
    bottom: -390px;
    inset-inline-end: -80px;
    width: 600px;
    height: 600px;
}

.page-hero {
    position: relative;
    padding: 175px 0 80px;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(47, 95, 220, 0.15), transparent 50%);
    border-bottom: 1px solid rgba(153, 186, 231, 0.08);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.6;
    background-image: linear-gradient(90deg, rgba(61, 108, 217, 0.035) 1px, transparent 1px), linear-gradient(rgba(61, 108, 217, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.page-hero .narrow-shell {
    position: relative;
}

.page-hero .eyebrow {
    justify-content: center;
}

.page-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(45px, 6.5vw, 72px);
}

.page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted-bright);
    font-size: 18px;
}

.back-link {
    position: absolute;
    top: -78px;
    inset-inline-start: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #95a7c0;
    font-size: 13px;
}

.back-link:hover {
    color: #fff;
}

.updated-chip {
    display: inline-flex;
    margin-top: 25px;
    padding: 6px 11px;
    color: #91a4bf;
    background: rgba(17, 36, 60, 0.68);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 11px;
}

.page-content {
    padding: 72px 0 130px;
}

.content-card {
    padding: clamp(26px, 5vw, 62px);
    background: rgba(10, 23, 39, 0.62);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.legal-section + .legal-section {
    padding-top: 39px;
    margin-top: 39px;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    margin-bottom: 15px;
    color: #eaf0f9;
    font-size: 23px;
    font-weight: 670;
    letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li {
    color: #a5b4c8;
    font-size: 15px;
    line-height: 1.78;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    display: grid;
    gap: 9px;
    padding-inline-start: 21px;
    margin: 19px 0 0;
}

.legal-section li::marker {
    color: #6b93fa;
}

.legal-accordion .accordion-item button {
    padding-block: 28px;
    font-size: 18px;
}

.legal-accordion .accordion-panel p {
    font-size: 15px;
}

.site-footer {
    padding-top: 75px;
    background: #040b13;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    padding-bottom: 66px;
}

.footer-brand p {
    max-width: 280px;
    margin: 18px 0 0;
    color: #7e8fa6;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.footer-links > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 7px;
    color: #d9e2ef;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-links a,
.footer-links span {
    color: #7f91a9;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.status-indicator {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-inline-start: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(73, 216, 155, 0.6);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 22px;
    color: #617289;
    border-top: 1px solid rgba(153, 186, 231, 0.09);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes transfer-dot {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@media (max-width: 1080px) {
    :root { --shell: min(100% - 40px, 980px); }

    .desktop-nav { display: none; }
    .menu-toggle { display: grid; }
    .hero { padding-top: 125px; }
    .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 25px; }
    .hero h1 { font-size: clamp(47px, 6vw, 64px); }
    .visual-frame { aspect-ratio: 1 / 1.05; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card { min-height: 310px; }
    .step-icon { margin-block: 23px 27px; }
    .bridge-grid { grid-template-columns: 0.86fr 1.14fr; gap: 45px; }
    .flow-panel { min-height: 430px; padding-inline: 24px; }
    .flow-card { width: 145px; height: 260px; }
    .mock-image { height: 105px; }
}

@media (max-width: 800px) {
    :root { --header-height: 70px; --radius-xl: 26px; }

    .mini-store-badge { display: none; }
    .hero { min-height: auto; padding-top: 125px; }
    .hero-grid { grid-template-columns: 1fr; gap: 55px; }
    .hero-copy { max-width: 700px; text-align: center; margin-inline: auto; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero h1 span { margin-inline: auto; }
    .hero-lede { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .launch-note { justify-content: center; }
    .hero-visual { width: min(650px, 100%); margin-inline: auto; }
    .visual-frame { aspect-ratio: 1.35; }
    .trust-row { margin-top: 45px; }
    .trust-row div { padding-inline: 18px; }
    .bridge-grid { grid-template-columns: 1fr; }
    .bridge-copy { max-width: 650px; }
    .flow-panel { width: min(620px, 100%); margin-inline: auto; }
    .split-heading { grid-template-columns: 1fr; gap: 20px; }
    .privacy-card-1,
    .privacy-card-2,
    .privacy-card-3,
    .privacy-card-4 { grid-column: span 6; }
    .faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .faq-heading { position: static; max-width: 600px; }
    .footer-top { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 590px) {
    :root { --shell: calc(100% - 28px); }

    .narrow-shell { width: calc(100% - 28px); }
    .brand { font-size: 18px; }
    .brand-mark { width: 33px; height: 33px; border-radius: 10px; }
    .brand-mark svg { width: 28px; height: 28px; }
    .header-inner { gap: 9px; }
    .header-actions { gap: 7px; }
    .language-form { min-width: 51px; width: 51px; }
    .language-form select { color: transparent; padding: 0; }
    .language-form .language-icon { color: var(--muted-bright); inset-inline-start: 16px; }
    .language-form::after { color: var(--muted-bright); inset-inline-end: 8px; }
    .hero { padding-top: 112px; }
    .eyebrow { margin-bottom: 17px; font-size: 10px; }
    .hero h1 { margin-bottom: 21px; font-size: clamp(42px, 13vw, 58px); line-height: 1.02; }
    .hero-lede { font-size: 16px; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .store-button { min-width: 205px; }
    .visual-frame { aspect-ratio: 0.96; border-radius: 22px; }
    .visual-frame img { object-position: 66% center; }
    .link-card { min-width: 176px; max-width: 88%; }
    .link-card-top { top: 5%; }
    .link-card-bottom { bottom: 5%; }
    .trust-row { display: grid; gap: 10px; justify-content: start; padding: 18px 6px; }
    .trust-row div { padding: 0; border: 0; }
    .section { padding-block: 86px; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2,
    .bridge-copy h2,
    .faq-heading h2,
    .final-cta h2 { font-size: clamp(34px, 10vw, 44px); }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: 0; }
    .step-icon { margin: 24px 0; }
    [dir="rtl"] .step-icon { margin-inline-start: auto; }
    .flow-panel { min-height: 355px; padding-inline: 13px; }
    .flow-card { width: 112px; height: 215px; padding: 11px; border-radius: 19px; }
    .mock-image { height: 85px; }
    .ai-spark { width: 40px; height: 40px; margin-block: 17px 25px; }
    .flow-line { width: 44px; }
    .flow-line b { display: none; }
    .delete-chip { bottom: 23px; }
    .privacy-grid { grid-template-columns: 1fr; }
    .privacy-card-1,
    .privacy-card-2,
    .privacy-card-3,
    .privacy-card-4 { grid-column: auto; min-height: 230px; }
    .privacy-card-icon { margin-bottom: 35px; }
    .ai-section { padding-block: 78px; }
    .faq-section { padding-top: 85px; }
    .accordion-item button { padding-block: 21px; font-size: 15px; }
    .final-cta-section { padding-top: 80px; }
    .final-cta { min-height: 430px; padding-inline: 20px; }
    .page-hero { padding: 150px 0 65px; }
    .page-hero h1 { font-size: clamp(42px, 13vw, 58px); }
    .page-hero p { font-size: 16px; }
    .back-link { top: -58px; }
    .page-content { padding: 38px 0 90px; }
    .content-card { padding: 25px 20px; }
    .footer-links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
