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

:root {
    --primary: #2d8a9e;
    --primary-dark: #1a4a6e;
    --primary-rgb: 45, 138, 158;
    --secondary: #0c2340;
    --accent: #5cbdb9;
    --surface: #ffffff;
    --surface-muted: #f4f8fc;
    --primary-soft: #e8f4f8;
    --text: #0c2340;
    --text-muted: #5c6b78;
    --border: #d8e3ef;
    --shadow: 0 18px 50px rgba(12, 35, 64, 0.1);
    --radius: 20px;
    --max: 1180px;
}

html[data-theme="dark"] {
    --surface: #0a1a2e;
    --surface-muted: #0f2238;
    --primary-soft: #14324a;
    --text: #eef4fb;
    --text-muted: #9eb0c2;
    --border: #243a55;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
}

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

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

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(12, 35, 64, 0.08);
}

html[data-theme="dark"] .site-header {
    background: rgba(10, 26, 46, 0.94);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
    flex-shrink: 0;
}

.brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--primary);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.theme-toggle__moon {
    display: none;
}

html[data-theme="dark"] .theme-toggle__sun {
    display: none;
}

html[data-theme="dark"] .theme-toggle__moon {
    display: block;
}

.lang-switch {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--surface);
}

.lang-switch a {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
}

.lang-switch a.is-active {
    background: var(--secondary);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 2px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.32);
}

.btn--primary:hover {
    background: var(--primary-dark);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.45;
    animation: hero-glow 10s ease-in-out infinite;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: 8%;
    inset-inline-start: -80px;
    background: rgba(var(--primary-rgb), 0.22);
}

.hero::after {
    width: 320px;
    height: 320px;
    bottom: 0;
    inset-inline-end: -100px;
    background: rgba(245, 158, 11, 0.16);
    animation-delay: -4s;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

[dir="rtl"] .hero__content {
    order: 1;
}

[dir="rtl"] .hero__phone {
    order: 2;
}

.hero__brand {
    margin: 0 0 0.35rem;
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.hero__tagline {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.hero__lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 34rem;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
}

.hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero__trust-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Hero image */
.hero__phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 56px rgba(12, 35, 64, 0.22));
    animation: hero-float 6s ease-in-out infinite;
}

/* ── Category grid (from sample) ── */
.category-strip {
    padding: 3.5rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.category-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.35rem 0.75rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.category-chip:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.category-chip__emoji {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.category-chip__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.section__eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.section__eyebrow--amber {
    background: #fef3c7;
    color: #b45309;
}

.section__eyebrow--teal {
    background: #ccfbf1;
    color: #0f766e;
}

.section__eyebrow--orange {
    background: #ffedd5;
    color: #c2410c;
}

html[data-theme="dark"] .section__eyebrow--amber {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

html[data-theme="dark"] .section__eyebrow--teal {
    background: rgba(45, 212, 191, 0.12);
    color: #5eead4;
}

html[data-theme="dark"] .section__eyebrow--orange {
    background: rgba(251, 146, 60, 0.15);
    color: #fdba74;
}

/* ── Sections ── */
.section {
    padding: 3.5rem 0;
}

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

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

.section__head {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section__head--center {
    margin-inline: auto;
    text-align: center;
}

.section__head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 800;
}

.section__head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

/* ── Features grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.features-grid--sample {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card--sample {
    background: var(--surface);
    border-radius: 24px;
    padding: 2rem;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-card--sample:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(8, 145, 178, 0.22);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.feature-card--sample .feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 1.15rem;
    box-shadow: 0 12px 24px rgba(12, 35, 64, 0.12);
}

.feature-card__icon--cyan {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.feature-card__icon--amber {
    background: linear-gradient(135deg, #fbbf24, #f97316);
}

.feature-card__icon--teal {
    background: linear-gradient(135deg, #2dd4bf, #059669);
}

.feature-card__icon--purple {
    background: linear-gradient(135deg, #c084fc, #9333ea);
}

.feature-card__icon--rose {
    background: linear-gradient(135deg, #fb7185, #db2777);
}

.feature-card__icon--indigo {
    background: linear-gradient(135deg, #818cf8, #4f46e5);
}

.feature-card__svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 800;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Split sections (explore / community) ── */
.split-section {
    position: relative;
    overflow: hidden;
}

.split-section--explore {
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.06), transparent);
}

.split-section--community {
    background: linear-gradient(135deg, #fffbeb, #ffedd5);
}

html[data-theme="dark"] .split-section--community {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.split-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

[dir="rtl"] .split-section--community .split-section__content {
    order: 1;
}

[dir="rtl"] .split-section--community .split-section__media {
    order: 2;
}

.split-section__image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.split-section__content h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
}

.split-section__lead {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.split-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.split-bullets__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.split-bullets__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.split-bullets__item h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 800;
}

.split-bullets__item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.split-actions {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.split-actions__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.split-actions__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
}

.split-action__svg {
    width: 24px;
    height: 24px;
}

.split-actions__item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.split-actions__item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ── Why grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.why-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1rem;
}

.why-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
}

.why-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    font-weight: 800;
}

.why-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Footer CTA ── */
.site-footer--cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    color: #fff;
    padding: 0;
}

.site-footer__cta {
    text-align: center;
    padding: 3rem 0 2rem;
}

.site-footer__cta-title {
    margin: 0 0 1.75rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    max-width: 640px;
    margin-inline: auto;
    line-height: 1.45;
}

.site-footer__bottom {
    background: rgba(0, 0, 0, 0.22);
    padding: 2.5rem 0 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 2rem;
}

.site-footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
}

.site-footer__brand-link:hover {
    color: #fff;
    opacity: 0.9;
}

.site-footer__brand-logo {
    border-radius: 12px;
    display: block;
}

.site-footer__brand-name {
    font-weight: 800;
}

.site-footer__brand-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 28rem;
}

.site-footer__links h3 {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 800;
}

.site-footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, auto));
    gap: 0.55rem 2rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    transition: color 0.15s ease;
}

.site-footer__links a:hover {
    color: #fff;
}

.store-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.download-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-trigger {
    display: flex;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.download-trigger:hover {
    transform: translateY(-2px);
}

.download-trigger:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: 12px;
}

.download-trigger__image {
    display: block;
    height: auto;
    max-width: 100%;
}

.download-trigger__image--footer {
    width: min(260px, 100%);
}

.download-panel__qr {
    padding: 0.65rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.download-panel__qr-image {
    display: block;
    width: 168px;
    height: 168px;
}

.download-panel__hint {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.store-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    background: #fff;
    color: #0c2340;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.store-badge small {
    font-size: 0.68rem;
    color: #5c6b78;
}

.store-badge strong {
    font-size: 1rem;
    font-weight: 800;
}

.store-badge--disabled {
    opacity: 0.7;
    pointer-events: none;
}

.site-footer__social {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.site-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.15s ease;
}

.site-footer__social a:hover {
    background: rgba(255, 255, 255, 0.22);
}

.site-footer__legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 0 1.75rem;
}

.site-footer__legal p {
    margin: 0;
}

/* Simple footer (privacy pages) */
.site-footer--simple {
    padding: 2rem 0 2.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: var(--surface-muted);
}

.site-footer--simple .site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.site-footer__brand-link--simple {
    color: var(--text);
    font-size: 1.1rem;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.site-footer__nav a,
.site-footer--simple a {
    color: var(--primary-dark);
    font-weight: 600;
}

.site-footer__copy {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
}

@media (min-width: 769px) {
    .site-footer__copy {
        width: auto;
        text-align: end;
    }
}

/* Policy pages */
.policy {
    padding: 3rem 0 4rem;
}

.policy-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.policy-card h1 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.policy-meta {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.policy-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.policy-card p,
.policy-card li {
    color: var(--text-muted);
}

.policy-card ul {
    padding-inline-start: 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .features-grid,
    .features-grid--sample,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    [dir="rtl"] .split-section--community .split-section__content,
    [dir="rtl"] .split-section--community .split-section__media {
        order: unset;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    [dir="rtl"] .hero__content,
    [dir="rtl"] .hero__phone {
        order: unset;
    }

    .hero__phone {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-header__inner {
        position: relative;
        flex-wrap: wrap;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid,
    .features-grid--sample,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }

    .policy-card {
        padding: 1.25rem;
    }
}

/* ── Motion ── */
@keyframes hero-float {
    0%, 100% {
        transform: translateY(0);
    }

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

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

    50% {
        transform: translate3d(0, -18px, 0) scale(1.06);
    }
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

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

.reveal--start {
    transform: translate3d(-32px, 0, 0);
}

.reveal--end {
    transform: translate3d(32px, 0, 0);
}

[dir="rtl"] .reveal--start {
    transform: translate3d(32px, 0, 0);
}

[dir="rtl"] .reveal--end {
    transform: translate3d(-32px, 0, 0);
}

.reveal--start.is-visible,
.reveal--end.is-visible {
    transform: translate3d(0, 0, 0);
}

.reveal--scale {
    transform: scale(0.94);
}

.reveal--scale.is-visible {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero::before,
    .hero::after,
    .hero__image {
        animation: none;
    }

    .reveal,
    .reveal.is-visible,
    .reveal--start,
    .reveal--end,
    .reveal--scale,
    .reveal--scale.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn:hover,
    .feature-card:hover,
    .category-chip:hover,
    .download-trigger:hover {
        transform: none;
    }
}
