:root {
    --bg: #0f172a;
    --bg-alt: #0b1220;
    --surface: #ffffff;
    --surface-alt: #f5f7fb;
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.1);
    --accent-strong: rgba(37, 99, 235, 0.85);
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: rgba(248, 250, 252, 0.85);
    --border-slate: rgba(148, 163, 184, 0.2);
    --border-white-soft: rgba(255, 255, 255, 0.35);
    --gradient-blue-light: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
    --gradient-blue-medium: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.12));
    --radius: 18px;
    --shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.12), transparent 50%),
                #f8fafc;
    color: var(--text);
    line-height: 1.6;
}

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

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1100px, 90vw);
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(248, 250, 252, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1rem;
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__title {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1rem;
    color: var(--text);
}

@media (max-width: 900px) {
    .nav__title {
        display: none;
    }
}

.nav__logo {
    width: 36px;
    height: 36px;
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    flex: 1;
    margin: 0 1.5rem;
}

.nav__links a {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.nav__links a:hover,
.nav__links a:focus {
    color: var(--accent);
}

.nav__lang {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    gap: 0.6rem;
}

.lang-select-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    background: #ffffff;
    padding: 0.25rem 1.1rem 0.25rem 0.65rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    position: relative;
    min-width: 6.5rem;
}

.lang-select__icon {
    font-size: 1.05rem;
    line-height: 1;
}

.lang-select {
    border: none;
    background: transparent;
    opacity: 0;
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lang-select:focus {
    outline: none;
}

.lang-current {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    min-width: 6.2rem;
}

.lang-current__text {
    margin-left: 0.4rem;
}

@media (max-width: 720px) {
    .lang-select-wrapper {
        min-width: 0;
        padding-right: 0.75rem;
    }
    .lang-current__text {
        display: none;
    }
}

@media (max-width: 720px) {
    .nav__inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.75rem;
    }
    .nav__links {
        display: none;
    }
    .nav__lang {
        order: 1;
    }
    .nav__inner .button {
        flex: 1 1 100%;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

.lifestyle__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    align-items: start;
}

.lifestyle__intro h2 {
    margin-bottom: 1rem;
}

.lifestyle__intro .lead {
    color: var(--text-muted);
}

.lifestyle__cards {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lifestyle-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.75rem;
}

.lifestyle-card i {
    font-size: 1.6rem;
    color: var(--accent);
}

.lifestyle-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.lifestyle-card p {
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .lifestyle__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .lifestyle__cards {
        grid-template-columns: 1fr;
    }
}

.playbook__inner {
    display: grid;
    gap: 2.5rem;
}

.playbook__intro h2 {
    margin-bottom: 1rem;
}

.playbook__intro .lead {
    color: var(--text-muted);
    max-width: 640px;
}

.playbook__grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.playbook-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    padding: 1.6rem 1.7rem;
    display: grid;
    gap: 0.85rem;
}

.code-block {
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre;
}

.playbook-figure {
    margin: 0;
}

.playbook-figure img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.lang-select-wrapper::after {
    content: '\25BC';
    font-size: 0.65rem;
    color: var(--text-muted);
    pointer-events: none;
    position: absolute;
    right: 0.65rem;
    transform: translateY(1px);
}

body.rtl .lang-select-wrapper {
    flex-direction: row-reverse;
}

body.rtl .lang-select {
    text-align: right;
    padding-right: 0.35rem;
    padding-left: 1.4rem;
}

body.rtl .lang-select-wrapper::after {
    right: auto;
    left: 0.65rem;
}

.toast {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    padding: 0.85rem 1rem;
    max-width: min(320px, 90vw);
    z-index: 40;
}

.toast[hidden] {
    display: none !important;
}

.toast__body {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.toast__body i {
    font-size: 1.2rem;
    color: rgba(96, 165, 250, 1);
}

.toast__close {
    border: none;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.toast__close:hover,
.toast__close:focus {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.05);
}

body.rtl .toast {
    right: auto;
    left: 1.5rem;
}

@media (max-width: 640px) {
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #0ea5e9);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    border: none;
}

.button--ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(37, 99, 235, 0.45);
    box-shadow: none;
}

.button:hover,
.button:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.button[disabled],
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hero {
    padding: 7rem 0 5rem;
}

.hero__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero__copy h1 {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin: 1rem 0;
    line-height: 1.15;
}

.hero__copy p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(59, 130, 246, 0.12));
    color: #047857;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.hero-badge i {
    font-size: 1.05rem;
    color: inherit;
}

.hero__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
}

.hero__highlights li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}

.hero__highlights i {
    color: var(--accent);
}

.hero__visual {
    display: grid;
    gap: 1.5rem;
}

.watchlist-card {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 24px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.watchlist-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.watchlist-card__title {
    font-weight: 600;
}

.watchlist-card__filters {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.75);
}

.watchlist-card__badge {
    font-size: 0.75rem;
    background: rgba(148, 163, 184, 0.2);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.watchlist-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.watchlist-card__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.watchlist-card__name {
    display: block;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.7);
}

.watchlist-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
}

.watchlist-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
    color: rgba(226, 232, 240, 0.92);
}

.watchlist-tag--alpha {
    background: rgba(56, 189, 248, 0.3);
}

.watchlist-tag--beta {
    background: rgba(45, 212, 191, 0.3);
}

.watchlist-tag--gamma {
    background: rgba(250, 204, 21, 0.3);
    color: #fef3c7;
}

@media (max-width: 900px) {
    .hero__visual {
        grid-template-columns: minmax(0, 1fr);
    }
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-card__header {
    padding: 1.5rem 1.8rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(37, 99, 235, 0.82));
    color: #f1f5f9;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.dashboard-card__body {
    padding: 1.6rem;
    display: grid;
    gap: 1.4rem;
}

.dashboard-card__body article {
    background: rgba(248, 250, 252, 0.85);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.dashboard-card__status {
    font-size: 0.85rem;
    opacity: 0.85;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--text);
    margin-right: 0.5rem;
}

.tag--warning {
    background: rgba(250, 204, 21, 0.18);
    color: #ca8a04;
}

.tag--accent {
    background: rgba(14, 165, 233, 0.18);
    color: #0ea5e9;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--surface);
}

.section h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    gap: 1.8rem;
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.card--accent {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.11), rgba(255, 255, 255, 0.9));
}

.card__icon {
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(148, 163, 184, 0.35);
    display: grid;
    gap: 2.2rem;
}

.timeline__item {
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2.8rem;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.timeline__time {
    display: inline-block;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.timeline__body {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.8rem;
}

.link::after {
    content: '→';
    font-size: 0.9rem;
}

.link-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.workflow-shell {
    position: relative;
    margin-top: 1.8rem;
    overflow: hidden;
    width: 100%;
}

.workflow-shell::before,
.workflow-shell::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    pointer-events: none;
    z-index: 2;
}

.workflow-shell::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0));
}

.workflow-shell::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0));
}

body.rtl .workflow-shell::before {
    left: auto;
    right: 0;
}

body.rtl .workflow-shell::after {
    right: auto;
    left: 0;
}

.workflow-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 1.5rem 1.2rem;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.5rem;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.workflow-track::-webkit-scrollbar {
    height: 6px;
}

.workflow-track::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 999px;
}

.workflow-track::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.16);
    border-radius: 999px;
}

.workflow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: #ffffff;
    box-shadow: var(--shadow);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.workflow-arrow i {
    font-size: 1.3rem;
}

.workflow-arrow:hover,
.workflow-arrow:focus-visible {
    background: var(--surface-alt);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.workflow-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.workflow-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.workflow-arrow--prev {
    left: 0.75rem;
}

.workflow-arrow--next {
    right: 0.75rem;
}

body.rtl .workflow-arrow--prev {
    left: auto;
    right: 0.75rem;
}

body.rtl .workflow-arrow--next {
    right: auto;
    left: 0.75rem;
}

@media (max-width: 640px) {
    .workflow-track {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
        scroll-padding-inline: 0;
        gap: 1.2rem;
    }
    .usecase-card {
        flex: none;
        width: 100%;
        max-width: 360px;
    }
    .workflow-arrow {
        display: none;
    }
}

.usecase-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    padding: 1.9rem 1.8rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 1.1rem;
    flex: 0 0 clamp(300px, 46vw, 420px);
    scroll-snap-align: center;
}

.usecase-card header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.usecase-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent);
    font-size: 1.4rem;
}

.usecase-card p {
    color: var(--text-muted);
    margin: 0;
}

.usecase-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.usecase-card ul li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.usecase-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 600;
}

.visuals {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.05));
}

.visuals__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.8rem;
    align-items: center;
}

.visuals-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.visuals-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.visuals-list i {
    color: var(--accent);
    font-size: 1.2rem;
}


.gallery-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    flex-direction: column;
    flex: 0 0 clamp(320px, 45vw, 420px);
    scroll-snap-align: center;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(14,165,233,0.08));
}

.gallery-card figcaption {
    padding: 1.2rem 1.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.gallery-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-shell::before,
.gallery-shell::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    pointer-events: none;
    z-index: 2;
}

.gallery-shell::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0));
}

.gallery-shell::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0));
}

body.rtl .gallery-shell::before {
    left: auto;
    right: 0;
}

body.rtl .gallery-shell::after {
    right: auto;
    left: 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 2.5rem 1.2rem;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2.5rem;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
    height: 6px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 999px;
}

.gallery-track::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.16);
    border-radius: 999px;
}


.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: #ffffff;
    box-shadow: var(--shadow);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.gallery-arrow i {
    font-size: 1.3rem;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: var(--surface-alt);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.gallery-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow--prev {
    left: 0.75rem;
}

.gallery-arrow--next {
    right: 0.75rem;
}

body.rtl .gallery-arrow--prev {
    left: auto;
    right: 0.75rem;
}

body.rtl .gallery-arrow--next {
    right: auto;
    left: 0.75rem;
}

@media (max-width: 900px) {
    .gallery-shell::before,
    .gallery-shell::after {
        width: 32px;
    }
}

@media (max-width: 640px) {
    .gallery-shell {
        padding-bottom: 1.5rem;
    }
    .gallery-track {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
        scroll-padding-inline: 0;
        gap: 1.2rem;
    }
    .gallery-card {
        flex: none;
        width: 100%;
        max-width: 360px;
    }
    .gallery-arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .visuals__inner {
        grid-template-columns: 1fr;
    }
    .gallery-track {
        gap: 1rem;
    }
    .gallery-card {
        flex: 0 0 clamp(280px, 85vw, 420px);
    }
}

.gallery-card__tier {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    width: fit-content;
}

.gallery-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gallery-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.gallery-card__list li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
    line-height: 1.2;
}
.discipline {
    background: #ffffff;
}

.discipline__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.discipline-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.85rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.discipline-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.discipline-list i {
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1.2;
}

.discipline__media {
    margin: -1.2rem -1.2rem 1.2rem;
    border-radius: 18px;
    overflow: hidden;
}

.discipline__media img {
    width: 100%;
    height: auto;
    display: block;
}

.discipline__card {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.88));
    color: #ffffff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.discipline__card h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.discipline-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.92);
}

.discipline-card__list li strong {
    color: rgba(96, 165, 250, 1);
}

.stack {
    background: var(--surface-alt);
}

.stack__grid {
    gap: 1.8rem;
}

.stack-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stack-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stack-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.stack-card__list li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .discipline__inner {
        grid-template-columns: 1fr;
    }
    .discipline__card {
        padding: 1.5rem;
    }
}

.stack__grid .card {
    height: 100%;
}

body.rtl .discipline-list li {
    flex-direction: row-reverse;
}

body.rtl .discipline-card__list li {
    text-align: right;
}

body.rtl .stack-card__list li {
    flex-direction: row-reverse;
}

body.rtl .stack-card__list li::before {
    margin-left: 0.3rem;
    margin-right: 0;
}


.community {
    background: var(--surface);
}

.community__layout {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 2rem;
}

.community__visual {
    background: #0b1220;
    color: #e2e8f0;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: grid;
    gap: 1.2rem;
}

.community__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.85);
}

.community__channels {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.community__channels li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.dot--general {
    background: #38bdf8;
}

.dot--macro {
    background: #facc15;
}

.dot--crypto {
    background: #22c55e;
}

.dot--equity {
    background: #f97316;
}

.community__preview {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.82);
    background: rgba(15, 23, 42, 0.6);
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

@media (max-width: 900px) {
    .community__layout {
        grid-template-columns: 1fr;
    }
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.profile-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    flex-direction: column;
}

.profile-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.profile-card__body {
    padding: 1.4rem;
}

.profile-card__body h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
}

.profile-card__body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social {
    background: var(--surface);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.social-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.5rem;
    display: grid;
    gap: 0.9rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.social-link {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.social-link:hover .social-icon,
.social-link:focus .social-icon {
    background: rgba(37, 99, 235, 0.2);
}

.social-link h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.social-link p,
.social-card > p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.55;
}

.social-card img {
    display: block;
}

body.rtl {
    direction: rtl;
}

body.rtl .nav__inner {
    flex-direction: row-reverse;
}

body.rtl .nav__links {
    flex-direction: row-reverse;
}

body.rtl .nav__lang {
    flex-direction: row-reverse;
}

body.rtl .hero__highlights li,
body.rtl .visuals-list li,
body.rtl .education-list li {
    flex-direction: row-reverse;
}

body.rtl .hero__highlights i,
body.rtl .visuals-list i,
body.rtl .education-list i {
    margin-left: 0;
    margin-right: 0.75rem;
}

body.rtl .education-data li {
    flex-direction: row-reverse;
}

body.rtl .education-data i {
    margin-left: 0;
    margin-right: 0.65rem;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.language-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow);
}

.language-card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.language-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.education {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(37, 99, 235, 0.05));
}

.education__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.6rem;
    align-items: start;
}

.education__copy {
    display: grid;
    gap: 1.2rem;
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.education-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.education-list i {
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.4;
}

.education__card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow);
    padding: 1.8rem 1.6rem;
    display: grid;
    gap: 1.4rem;
}

.education__media {
    margin: -0.8rem -0.6rem 0;
    border-radius: 18px;
    overflow: hidden;
}

.education__media img {
    width: 100%;
    height: auto;
    display: block;
}

.education__card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.education-data {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.education-data li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.education-data i {
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.4;
}

.cta {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.92));
    padding: 3rem;
    border-radius: var(--radius);
    color: #f8fafc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.cta__actions {
    display: flex;
    gap: 1rem;
}
@media (max-width: 960px) {
    .nav__links {
        gap: 1.25rem;
    }
}

@media (max-width: 720px) {
    .nav__inner {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .nav__links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav__lang {
        margin-left: auto;
    }
}


.waitlist-form {
    width: min(560px, 100%);
}

.waitlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    gap: 0.9rem;
    align-items: end;
}

.waitlist-field {
    display: grid;
    gap: 0.45rem;
}

.waitlist-field input {
    width: 100%;
    max-width: none;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.85rem 1.1rem;
    background: rgba(15, 23, 42, 0.18);
    color: #f8fafc;
    font-size: 0.95rem;
}

.waitlist-submit {
    align-self: stretch;
    padding-inline: 1.8rem;
    white-space: nowrap;
}

.waitlist-field input::placeholder {
    color: rgba(248, 250, 252, 0.7);
}

@media (max-width: 640px) {
    .waitlist-grid {
        grid-template-columns: 1fr;
    }
    .waitlist-submit {
        width: 100%;
    }
}


.waitlist-field input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 2px;
}

.waitlist-field input.input--error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.waitlist-field input.input--error:focus {
    outline-color: #ef4444;
}

.waitlist-field__error {
    display: none;
    font-size: 0.85rem;
    color: #fecdd3;
    margin-top: 0.25rem;
}

.waitlist-field__error:not(:empty) {
    display: block;
}

.waitlist-status {
    min-height: 1.25rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.85);
}

.waitlist-status[data-state="error"] {
    color: #fecdd3;
}

.waitlist-status[data-state="success"] {
    color: #bbf7d0;
}

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

.footer {
    background: var(--bg-alt);
    color: #e2e8f0;
    padding: 2.5rem 0;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.footer__brand-group {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__logo {
    width: 32px;
    height: 32px;
    display: block;
}

.footer__links {
    display: flex;
    gap: 0.75rem;
}

.footer__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    color: rgba(226, 232, 240, 0.9);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__icon-link i {
    font-size: 1.1rem;
}

.footer__icon-link img {
    width: 18px;
    height: 18px;
}

.footer__icon-link:hover,
.footer__icon-link:focus-visible {
    background: rgba(37, 99, 235, 0.6);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer__brand {
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (max-width: 720px) {
    .nav__links {
        display: none;
    }
    .hero__cta {
        width: 100%;
    }
    .cta__actions {
        width: 100%;
        flex-direction: column;
    }
    .hero__copy p {
        max-width: none;
    }
    .timeline {
        padding-left: 0;
        border: none;
    }
    .timeline__item::before {
        display: none;
    }
    .hero__photo {
        position: static;
        width: 100%;
        height: 220px;
        margin-top: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .education__grid {
        grid-template-columns: 1fr;
    }
    .waitlist-field {
        grid-template-columns: 1fr;
    }
    .social-link {
        grid-template-columns: 1fr;
    }
}
.gallery-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.performance__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
}

.performance__copy h2 {
    margin-bottom: 1rem;
}

.performance__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.performance__list li {
    display: grid;
    grid-auto-flow: column;
    gap: 0.65rem;
    align-items: baseline;
    color: var(--text-muted);
}

.performance__list li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
}

.performance__panel {
    display: grid;
    gap: 1.5rem;
}

.performance__media {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.performance__media img {
    width: 100%;
    display: block;
}

.performance__stats {
    display: grid;
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.4rem;
}

.stat-card__label {
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.stat-card__note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lifecycle__inner {
    text-align: center;
}

.lifecycle__steps {
    list-style: none;
    padding: 0;
    margin: 2.4rem 0 2.1rem;
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.lifecycle-step {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem 1.6rem;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
    text-align: left;
    position: relative;
}

.lifecycle-step__badge {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
}

.lifecycle-step h3 {
    margin: 0 0 0.4rem;
}

.lifecycle-step p {
    margin: 0;
    color: var(--text-muted);
}

.lifecycle__cta {
    max-width: 480px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.security__inner {
    display: grid;
    gap: 2rem;
}

.security__header {
    display: grid;
    gap: 0.75rem;
}

.security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.security-card {
    background: linear-gradient(180deg, #ffffff, rgba(248, 250, 252, 0.9));
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.7rem;
}

.security-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent);
    font-size: 1.25rem;
}

.security-card p {
    margin: 0;
    color: var(--text-muted);
}

.security__note {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.insights__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.insight-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-rows: 140px auto;
}

.insight-card__media {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.18));
}

.insight-card__media--liquidity {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.16));
}

.insight-card__media--discipline {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(14, 165, 233, 0.18));
}

.insight-card__media--compliance {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.18));
}

.insight-card__body {
    padding: 1.35rem 1.4rem 1.6rem;
    display: grid;
    gap: 0.65rem;
}

.insight-card__tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--accent);
}

.insight-card__link {
    font-weight: 600;
    color: var(--accent);
}

.insight-card__link:hover,
.insight-card__link:focus {
    text-decoration: none;
}

.pricing__grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 2.2rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1.1rem;
}

.pricing-card--current {
    border: 2px solid rgba(37, 99, 235, 0.25);
}

.pricing-card--enterprise {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
    color: #f8fafc;
}

.pricing-card--enterprise .pricing-card__list li,
.pricing-card--enterprise .pricing-card__subtitle,
.pricing-card--enterprise .pricing-card__price,
.pricing-card--enterprise .pricing-card__badge {
    color: #e2e8f0;
}

.pricing-card__header {
    display: grid;
    gap: 0.45rem;
}

.pricing-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.pricing-card__badge--soon {
    background: rgba(236, 72, 153, 0.12);
    color: #db2777;
}

.pricing-card__badge--enterprise {
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.pricing-card__price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.pricing-card__subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.pricing-card__list li {
    color: var(--text-muted);
}

.pricing-card__cta {
    justify-self: flex-start;
}

.pricing__note {
    margin: 2rem 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .performance__layout {
        grid-template-columns: 1fr;
    }
    .performance__panel {
        grid-template-columns: 1fr;
    }
    .lifecycle-step__badge {
        position: static;
        margin-bottom: 0.6rem;
        display: inline-block;
    }
}

@media (max-width: 720px) {
    .insight-card {
        grid-template-rows: 120px auto;
    }
    .pricing-card {
        padding: 1.6rem 1.4rem;
    }
    .security__grid {
        grid-template-columns: 1fr;
    }
}

.floating-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    display: none;
    justify-content: center;
    text-align: center;
}

.floating-cta .button {
    width: 100%;
}

@media (max-width: 720px) {
    .floating-cta {
        display: flex;
    }
}

@media (min-width: 721px) {
    .floating-cta {
        display: none;
    }
}

/* Loading spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
