:root {
    --bg: #f3f3f1;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --border: rgba(17, 17, 17, 0.08);
    --border-strong: rgba(17, 17, 17, 0.14);
    --text: #111111;
    --muted: #6d6d73;
    --shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
    --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 36%),
        radial-gradient(circle at bottom right, rgba(214, 214, 214, 0.34), transparent 25%),
        linear-gradient(135deg, #ececea 0%, #f7f6f4 48%, #eceae7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1)),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0) 120px,
            rgba(17, 17, 17, 0.012) 121px,
            rgba(17, 17, 17, 0.012) 122px
        );
    opacity: 0.8;
}

.page-shell {
    width: min(calc(100% - 32px), var(--container));
    margin: 34px auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: calc(var(--radius-xl) + 8px);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.coming-soon {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    min-height: calc(100vh - 110px);
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(248, 248, 247, 0.94), rgba(255, 255, 255, 0.78));
}

.media-panel,
.content-panel {
    position: relative;
}

.media-card,
.content-card {
    height: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.media-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    flex: 1;
    border-radius: 28px;
    filter: grayscale(1) contrast(1.04) brightness(0.88);
}

.media-copy {
    margin-top: 14px;
    padding: 22px 18px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface-strong);
}

.shield-badge {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 14px;
    background: #111111;
    color: #ffffff;
    font-size: 11px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.media-copy h2,
.content-main h1 {
    margin: 0;
    letter-spacing: -0.03em;
}

.media-copy h2 {
    font-size: clamp(1.2rem, 1.62vw, 1.95rem);
    line-height: 1.04;
}

.media-copy p,
.content-main p,
.feature-card p,
.footer-note {
    color: var(--muted);
}

.media-copy p,
.content-main p {
    font-size: 0.77rem;
    line-height: 1.85;
}

.content-card {
    padding: 28px;
    display: flex;
}

.content-main {
    width: 100%;
    min-height: 100%;
    border-radius: 30px;
    padding: 10px 12px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
}

.brand {
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.topbar-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lang-link,
.status-pill,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.lang-link,
.status-pill {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font-weight: 600;
    font-size: 0.58rem;
}

.lang-link:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.status-pill::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111111;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.eyebrow {
    margin: 0 0 20px;
    color: #818187;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.45em;
    text-transform: uppercase;
}

.content-main h1 {
    font-size: clamp(1.5rem, 2.4vw, 3rem);
    line-height: 1.04;
    margin-bottom: 18px;
}

.content-main p {
    margin: 0 0 10px;
    max-width: 760px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 40px;
}

.primary-btn,
.secondary-btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    font-size: 0.64rem;
}

.primary-btn {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.secondary-btn {
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    padding: 24px 22px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 243, 0.9));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.feature-number {
    display: block;
    margin-bottom: 12px;
    color: #a0a0a5;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    line-height: 1.7;
}

.footer-note {
    margin-top: 26px;
    font-size: 0.95rem;
}

html[dir="rtl"] body {
    font-family: "Tahoma", "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] .topbar {
    flex-direction: row-reverse;
}

html[dir="rtl"] .topbar-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .actions {
    justify-content: flex-start;
}

html[dir="rtl"] .feature-card,
html[dir="rtl"] .content-main,
html[dir="rtl"] .media-copy {
    text-align: right;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .feature-number {
    letter-spacing: 0.16em;
}

@media (max-width: 1080px) {
    .coming-soon {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        min-height: 360px;
        max-height: 560px;
    }

    .content-main {
        padding: 0;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(calc(100% - 18px), var(--container));
        margin: 12px auto;
        padding: 10px;
        border-radius: 28px;
    }

    .coming-soon {
        gap: 18px;
        padding: 14px;
        border-radius: 24px;
    }

    .media-card,
    .content-card {
        border-radius: 24px;
    }

    .media-card,
    .content-card {
        padding: 16px;
    }

    .content-card {
        padding: 20px 16px;
    }

    .topbar {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    html[dir="rtl"] .topbar {
        flex-direction: column;
    }

    .actions,
    .highlights {
        grid-template-columns: 1fr;
    }

    .highlights {
        display: grid;
    }

    .primary-btn,
    .secondary-btn,
    .lang-link,
    .status-pill {
        width: 100%;
    }

    .hero-image {
        min-height: 280px;
    }

    .media-copy h2,
    .content-main h1 {
        font-size: clamp(1.2rem, 4.8vw, 1.8rem);
    }
}
