/* ViCoder — Editorial Luxury System */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri+Quran&display=swap');

:root {
    --orange: #EC8828;
    --orange-soft: rgba(236, 136, 40, 0.12);
    --orange-border: rgba(236, 136, 40, 0.35);
    --orange-border-strong: rgba(236, 136, 40, 0.45);
    --orange-border-soft: rgba(236, 136, 40, 0.3);
    --red: #C41E3A;
    --black: #050505;
    --surface: #0C0C0C;
    --surface-2: #111111;
    --line: #1F1F1F;
    --line-hover: #2A2A2A;
    --text: #E8E8E8;
    --text-muted: #6B6B6B;
    --text-dim: #404040;
    --white: #FFFFFF;
    --font: 'IBM Plex Sans Arabic', system-ui, sans-serif;
    --max: 1180px;
    --header: 64px;
    --ease: 0.22s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    direction: rtl;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--ease), border-color var(--ease), background var(--ease); }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ─── Header ─── */
.nav-toggle { display: none; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header);
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-logo--header {
    width: min(124px, 28vw);
    height: auto;
    max-height: 18px;
}

.brand-logo--hero {
    width: min(220px, 64vw);
    height: auto;
    max-height: 40px;
}

.brand-logo--panel {
    height: 44px;
    margin-inline: auto;
}

.logo-mark {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a.nav-active {
    color: var(--orange);
}

.nav-cta {
    border: 1px solid var(--line-hover) !important;
    color: var(--text) !important;
    padding: 7px 18px !important;
    border-radius: 4px !important;
}

.nav-cta:hover {
    border-color: var(--orange) !important;
    color: var(--orange) !important;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: var(--ease);
}

.nav-toggle-label span { top: 9px; }
.nav-toggle-label span::before { content: ''; top: -7px; }
.nav-toggle-label span::after { content: ''; top: 7px; }

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }
    .nav-links {
        position: fixed;
        top: var(--header);
        right: 0;
        left: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 16px;
        gap: 2px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: var(--ease);
    }
    .nav-toggle:checked ~ .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* ─── Gateway Home (single viewport) ─── */
.gateway {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header);
}

.gateway-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0 64px;
}

.gateway-intro {
    margin-bottom: 48px;
    max-width: 520px;
}

.gateway-intro .eyebrow,
.section-top .eyebrow,
.eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.gateway-intro .eyebrow { margin-bottom: 20px; }

.gateway-intro h1 {
    font-size: clamp(1.4rem, 2.6vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.gateway-intro p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.gateway--promo {
    min-height: auto;
}

.gateway--promo .gateway-inner {
    justify-content: flex-start;
    padding-top: 36px;
    padding-bottom: 48px;
    gap: 0;
}

.gateway--promo .gateway-intro {
    margin-bottom: 28px;
    max-width: 560px;
}

/* ─── Promo slider (coverflow ads) ─── */
.promo-slider {
    position: relative;
    margin: 8px 0 48px;
    outline: none;
}

.promo-slider-stage {
    position: relative;
    height: clamp(280px, 42vw, 380px);
    perspective: 1200px;
    overflow: visible;
}

.promo-card {
    position: absolute;
    inset-inline: 0;
    top: 0;
    width: min(68%, 560px);
    height: 100%;
    margin-inline: auto;
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: none;
    transform: scale(0.75);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, border-color var(--ease), background var(--ease);
    z-index: 1;
    pointer-events: none;
}

.promo-card[data-offset="0"] {
    transform: translateX(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 20;
    pointer-events: auto;
    border-color: var(--line-hover);
    background: var(--surface-2);
}

.promo-card[data-offset="0"]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    z-index: 3;
}

.promo-card[data-offset="-1"] {
    transform: translateX(30%) rotateY(-22deg) scale(0.86);
    opacity: 0.65;
    z-index: 10;
}

.promo-card[data-offset="1"] {
    transform: translateX(-30%) rotateY(22deg) scale(0.86);
    opacity: 0.65;
    z-index: 10;
}

.promo-card[data-offset="-2"] {
    transform: translateX(52%) rotateY(-30deg) scale(0.72);
    opacity: 0.25;
    z-index: 4;
}

.promo-card[data-offset="2"] {
    transform: translateX(-52%) rotateY(30deg) scale(0.72);
    opacity: 0.25;
    z-index: 4;
}

.promo-card-media {
    position: absolute;
    inset: 0;
}

.promo-card-media img,
.promo-card-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-card[data-offset="0"] .promo-card-media img {
    animation: promo-zoom 3.2s ease-out both;
}

.promo-card-fallback {
    background: linear-gradient(145deg, #1a1410, #0c0c0c 60%);
}

.promo-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(5, 5, 5, 0.55) 62%, rgba(5, 5, 5, 0.92) 100%);
}

.promo-card-body {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.promo-card-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--orange-border);
    padding: 4px 8px;
    background: transparent;
}

.promo-card-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.promo-card-sub {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 34ch;
}

.promo-card-cta {
    margin-top: 6px;
}

.promo-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.promo-slider-btn {
    min-width: 38px;
    padding-inline: 12px;
    font-size: 1.15rem;
    line-height: 1;
}

.promo-slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.promo-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid var(--line-hover);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: border-color var(--ease), background var(--ease);
}

.promo-slider-dot.is-active {
    background: var(--orange);
    border-color: var(--orange);
    transform: none;
}

@keyframes promo-zoom {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}

@media (max-width: 700px) {
    .promo-slider-stage { height: 300px; }

    .promo-card {
        width: min(88%, 440px);
    }

    .promo-card[data-offset="-1"] {
        transform: translateX(20%) rotateY(-14deg) scale(0.88);
    }

    .promo-card[data-offset="1"] {
        transform: translateX(-20%) rotateY(14deg) scale(0.88);
    }

    .promo-card[data-offset="-2"],
    .promo-card[data-offset="2"] {
        opacity: 0;
    }

    .promo-card-body { padding: 20px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .promo-card,
    .promo-slider-dot,
    .promo-card[data-offset="0"] .promo-card-media img {
        transition: none;
        animation: none;
    }
}

.gateway-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

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

.pillar {
    background: var(--surface);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
    transition: background var(--ease);
}

.pillar:hover {
    background: var(--surface-2);
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--ease);
}

.pillar:hover::before { width: 100%; }

.pillar-num {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.pillar h2 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.pillar p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.02em;
}

.pillar-link::after {
    content: '←';
    transition: transform var(--ease);
}

.pillar:hover .pillar-link::after {
    transform: translateX(-4px);
}

.pillar--soon {
    opacity: 0.78;
}

.pillar-soon-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--orange-border);
    padding: 4px 8px;
}

.pillar--soon .pillar-link {
    color: var(--text-muted);
}

.gateway-footer-line {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.gateway-footer-line a.gateway-footer-contact {
    color: var(--orange);
    font-weight: 600;
}

.gateway-footer-line a.gateway-footer-contact:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .gateway-footer-line {
        flex-direction: column;
        text-align: center;
    }
}

.gateway-footer-line a {
    color: var(--text-muted);
}

.gateway-footer-line a:hover { color: var(--orange); }

.gateway-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.policy-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.policy-card:hover {
    border-color: var(--orange-border-strong);
    transform: translateY(-2px);
}

.policy-card-num {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 600;
}

.policy-card h2 {
    font-size: 1.0625rem;
    color: var(--white);
    margin: 0;
}

.policy-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-muted);
    flex: 1;
}

.policy-card-link {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.policy-card:hover .policy-card-link {
    color: var(--orange);
}

.legal-related {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 0.875rem;
}

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

/* ─── Legal pages ─── */
.legal-page {
    max-width: 720px;
}

.legal-body {
    display: grid;
    gap: 28px;
}

.legal-body section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.legal-body p,
.legal-body li {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.legal-body ul {
    margin: 0;
    padding-inline-start: 1.25rem;
    display: grid;
    gap: 8px;
}

.legal-body a {
    color: var(--orange);
}

.legal-meta {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.legal-related a {
    color: var(--text-muted);
}

.legal-related a:hover {
    color: var(--orange);
}

/* ─── Quran Verse (gateway) ─── */
.quran-verse {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.quran-verse .verse-text {
    font-family: 'Amiri Quran', serif;
    font-size: clamp(1.5rem, 3.2vw, 2.05rem);
    line-height: 1.95;
    color: var(--text);
    letter-spacing: 0;
    font-weight: 400;
}

.quran-verse .verse-rule {
    width: 2px;
    flex-shrink: 0;
    background: var(--orange);
    opacity: 0.85;
}

@media (max-width: 600px) {
    .quran-verse .verse-text {
        font-size: clamp(1.4rem, 5.5vw, 1.65rem);
    }
    .quran-verse { margin-bottom: 24px; }
}

/* ─── Section Shell (inner pages) ─── */
.section-shell {
    padding-top: calc(var(--header) + 48px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.site-back-bar {
    padding-top: calc(var(--header) + 20px);
    padding-bottom: 4px;
    direction: ltr;
}

.site-back-bar .container {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.site-back-bar + .section-shell {
    padding-top: 16px;
    min-height: calc(100vh - var(--header) - 48px);
}

.site-back-bar + .form-section {
    padding-top: 16px;
}

.site-back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    direction: ltr;
}

.panel-toolbar > .site-back-link,
.panel-toolbar > .btn-ghost:last-child,
.panel-toolbar > a.btn-ghost {
    direction: ltr;
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.section-top {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.section-top .eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-top h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-top .lead {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

/* ─── About block ─── */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
    .about-block { grid-template-columns: 1fr; gap: 32px; }
}

.about-block h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.about-block p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 12px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    color: var(--text-muted);
    transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.social-link:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: var(--orange-soft);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-link--snap svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expertise-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
}

.expertise-list li:first-child { border-top: 1px solid var(--line); }

.expertise-list .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--orange);
    text-transform: uppercase;
    padding-top: 2px;
}

.expertise-list .desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Project List (editorial) ─── */
.project-list-scroll {
    max-height: 380px;
    overflow-y: scroll;
    overflow-x: hidden;
    direction: rtl;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
    scrollbar-color: var(--orange) var(--surface-2);
}

.project-list-scroll::-webkit-scrollbar {
    width: 10px;
    background: var(--surface-2);
}

.project-list-scroll::-webkit-scrollbar-button,
.project-list-scroll::-webkit-scrollbar-corner {
    display: none;
    height: 0;
    width: 0;
}

.project-list-scroll::-webkit-scrollbar-track {
    background: var(--surface-2);
    border-radius: 5px;
}

.project-list-scroll::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    border-radius: 5px;
    min-height: 56px;
}

.project-list-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #ff7010;
}

.project-list { list-style: none; }

.project-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: background var(--ease);
}

.project-row:first-child { border-top: 1px solid var(--line); }

.project-row:hover { background: rgba(255,255,255,0.01); }

.project-row .idx {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 500;
}

.project-row .info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.project-row .info h3 a:hover { color: var(--orange); }

.project-row .info p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.project-row .meta {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 88px;
    padding-inline-end: 4px;
}

.tech-tag {
    font-size: 0.6875rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.row-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.04em;
}

@media (max-width: 640px) {
    .project-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .project-row .meta { align-items: flex-start; }
}

/* ─── Store Layout ─── */
.store-zones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
}

.store-zones::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--orange);
    transform: translateX(-50%);
    opacity: 0.55;
}

@media (max-width: 900px) {
    .store-zones { grid-template-columns: 1fr; gap: 48px; }
    .store-zones::before { display: none; }
}

.store-zone-head {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.store-zone-head .zone-num {
    font-size: 0.6875rem;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.store-zone-head h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.store-zone-head p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.product-row-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.product-row-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--orange);
}

.product-row-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.product-row:first-of-type { border-top: 1px solid var(--line); }

.product-row h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.product-row h3 a:hover { color: var(--orange); }

.product-row .sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.product-row .side {
    text-align: left;
    flex-shrink: 0;
}

.price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.price-free { color: var(--orange); }

.price-currency {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.custom-block {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 32px;
}

.custom-block p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-lines {
    list-style: none;
    margin-bottom: 28px;
}

.feature-lines li {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    padding-right: 16px;
}

.feature-lines li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateY(-50%);
}

.order-next-steps {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--black);
    counter-reset: step;
}

.order-next-steps li {
    position: relative;
    padding: 8px 42px 8px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
    border-bottom: 1px solid var(--line);
}

.order-next-steps li:last-child {
    border-bottom: 0;
}

.order-next-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.status-owned {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--orange);
    text-transform: uppercase;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    background: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: #D45204;
    border-color: #D45204;
    color: var(--white);
}

.btn-outline {
    border-color: var(--line-hover);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-ghost {
    border-color: transparent;
    color: var(--text-muted);
    padding: 8px 12px;
}

.btn-ghost:hover { color: var(--orange); }

.btn-sm { padding: 7px 16px; font-size: 0.75rem; }
.btn-lg { padding: 12px 28px; font-size: 0.875rem; }

/* Order CTA — soft orange chip that fills on hover (fits the thin-line rows) */
.btn-order {
    background: var(--orange-soft);
    border-color: var(--orange-border);
    color: var(--orange);
}

.btn-order:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.btn-order .btn-order-arrow {
    display: inline-block;
    transition: transform var(--ease);
}

.btn-order:hover .btn-order-arrow { transform: translateX(-3px); }

.btn-whatsapp {
    background: transparent;
    border-color: var(--line-hover);
    color: var(--text);
}

.btn-whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

/* ─── Forms ─── */
.form-section {
    padding: calc(var(--header) + 48px) 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Custom order: footer pinned to viewport bottom; form scrolls above it */
.page-custom-order {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
}

.page-custom-order main {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.page-custom-order .site-footer {
    flex-shrink: 0;
    margin-top: 0;
    padding: 14px 0;
    background: var(--black);
    border-top: 1px solid var(--line);
    z-index: 5;
}

.page-custom-order .site-back-bar {
    padding-top: calc(var(--header) + 12px);
    padding-bottom: 0;
}

.form-section--order {
    min-height: 0;
    padding: 12px 0 20px;
    align-items: stretch;
}

.site-back-bar + .form-section--order {
    padding-top: 8px;
    padding-bottom: 16px;
}

.form-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 40px 36px;
}

.form-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.form-card .subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.75;
}

.form-card--order {
    max-width: 520px;
    padding: 24px 28px 22px;
}

.form-card--order .eyebrow {
    margin-bottom: 6px;
}

.form-card--order h2 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.form-card--order .subtitle {
    margin-bottom: 10px;
    line-height: 1.55;
}

.form-card--order .form-hint--links {
    margin: 0 0 14px;
}

.form-card--order .form-group {
    margin-bottom: 12px;
}

.form-card--order .form-group label {
    margin-bottom: 5px;
}

.form-card--order .form-control {
    padding: 9px 12px;
    font-size: 0.875rem;
}

.form-card--order textarea.form-control {
    min-height: 72px;
    resize: vertical;
}

.order-form-submit {
    width: 100%;
    margin-top: 4px;
}

.order-reassure {
    margin: 10px 0 0;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.form-hint {
    margin: 8px 0 0;
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    background: var(--black);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9375rem;
    transition: border-color var(--ease);
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-error { color: var(--red); font-size: 0.75rem; margin-top: 6px; }

.form-errors {
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.25);
    padding: 12px 14px;
    font-size: 0.8125rem;
    color: #E87070;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* ─── Messages ─── */
.messages {
    position: fixed;
    top: calc(var(--header) + 16px);
    left: 24px;
    right: auto;
    z-index: 9999;
    max-width: min(360px, calc(100vw - 48px));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none;
}

.message {
    padding: 12px 16px;
    font-size: 0.8125rem;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    text-align: right;
    animation: message-toast-out 5s ease forwards;
    pointer-events: auto;
}

@keyframes message-toast-out {
    0%, 82% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .message { animation: none; }
}

.message-success { border-color: rgba(34, 197, 94, 0.3); color: #6EE7A0; }
.message-error { border-color: rgba(196, 30, 58, 0.3); color: #F08080; }
.message-info { border-color: var(--orange-border-soft); color: var(--orange); }
.message-warning { border-color: rgba(234, 179, 8, 0.3); color: #FCD34D; }

/* ─── Dashboard ─── */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.purchase-card {
    background: var(--surface);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.purchase-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.purchase-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px;
}

/* ─── Product Detail ─── */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .product-detail-grid { grid-template-columns: 1fr; }
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
}

.product-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-info h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.product-features {
    list-style: none;
    margin: 24px 0;
    border-top: 1px solid var(--line);
}

.product-features li {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    padding-right: 14px;
    position: relative;
}

.library-pdf-viewer {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.library-pdf-frame {
    width: 100%;
    min-height: 72vh;
    border: 1px solid var(--line);
    background: var(--surface);
    margin-top: 12px;
}

.product-row-thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--surface);
}

.product-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-features li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--orange);
    transform: translateY(-50%);
}

/* ─── Project Detail ─── */
.project-hero-media {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
}

/* Show the full image at its natural aspect ratio — no cropping. */
.project-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

.project-detail-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.project-detail-section--inline {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.project-detail-section .eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.project-detail-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 960px;
}

@media (max-width: 768px) {
    .project-gallery { grid-template-columns: 1fr; }
}

.project-gallery-item {
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Uniform tiles: every gallery image fills the same 16:10 box regardless of
   its original size, so the grid always looks balanced. */
.project-gallery-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface);
    flex-shrink: 0;
}

.project-gallery-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.project-gallery-caption {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 10px 12px;
    border-top: 1px solid var(--line);
    line-height: 1.6;
}

.project-video-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: #000;
    border: 1px solid var(--line);
    overflow: hidden;
}

/* YouTube / Vimeo: standard embed box, fill without letterbox crop tricks */
.project-video-wrap--embed {
    aspect-ratio: 16 / 9;
}

.project-video-wrap--embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Direct file: hug video; landscape wider, portrait stays compact */
.project-video-wrap--file {
    position: relative;
    aspect-ratio: auto;
    width: fit-content;
    max-width: min(100%, 400px);
    margin-inline: auto;
    display: block;
    background: transparent;
    border: none;
    overflow: hidden;
}

.project-video-wrap--file.is-landscape {
    max-width: min(100%, 820px);
    width: 100%;
}

.project-video-wrap--file video {
    width: 100%;
    height: auto;
    max-height: min(62vh, 600px);
    display: block;
    object-fit: contain;
    object-position: center;
    background: #000;
    border: 1px solid var(--line);
    min-height: 160px;
}

.project-video-wrap--file.is-landscape video {
    max-height: min(52vh, 460px);
    min-height: 0;
}

.project-video-wrap--file.is-loading video {
    opacity: 0.55;
}

.project-video-status {
    position: absolute;
    inset-inline: 12px;
    bottom: 14px;
    z-index: 2;
    padding: 8px 10px;
    font-size: 0.75rem;
    color: var(--text);
    background: rgba(5, 5, 5, 0.72);
    border: 1px solid var(--line);
    pointer-events: none;
}

@media (max-width: 768px) {
    .project-video-wrap--file {
        max-width: min(100%, 320px);
    }
    .project-video-wrap--file.is-landscape {
        max-width: 100%;
    }
    .project-video-wrap--file video {
        max-height: min(58vh, 520px);
    }
    .project-video-wrap--file.is-landscape video {
        max-height: min(42vh, 280px);
    }
}

.project-gallery-item--placeholder {
    display: flex;
    flex-direction: column;
}

.project-gallery-item--placeholder .project-placeholder-media {
    height: clamp(160px, 24vw, 280px);
    background:
        linear-gradient(135deg, var(--orange-soft) 0%, transparent 55%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.015) 10px,
            rgba(255, 255, 255, 0.015) 11px
        ),
        var(--surface);
}

.project-placeholder-media {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    padding: 20px;
    border-top: 2px solid var(--orange);
}

.project-placeholder-idx {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--orange);
}

.project-placeholder-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.project-video-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 40%, var(--orange-soft) 0%, transparent 55%),
        var(--surface);
}

.project-placeholder-video {
    text-align: center;
    padding: 32px 24px;
    max-width: 420px;
}

.project-placeholder-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-2);
    position: relative;
}

.project-placeholder-play::before {
    content: '';
    width: 0;
    height: 0;
    margin-right: -3px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 14px solid var(--orange);
}

.project-placeholder-video-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.project-placeholder-video-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ─── Progress ─── */
/* ─── Breadcrumb ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }

/* ─── Footer ─── */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 32px 0;
    margin-top: auto;
}

.site-footer.minimal { padding: 0; border: none; margin: 0; }

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-inner a { color: var(--text-muted); }
.footer-inner a:hover { color: var(--orange); }

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
}

/* ─── Empty / Order ─── */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.order-success-card {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 48px 36px;
}

.order-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.08em;
    margin: 16px 0;
}

.pay-thanks-card {
    max-width: 520px;
    padding: 52px 40px 44px;
    position: relative;
    overflow: hidden;
}

.pay-thanks-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.pay-thanks-title {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.pay-thanks-lead {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0 0 28px;
    line-height: 1.7;
}

.pay-thanks-meta {
    text-align: start;
    border: 1px solid var(--line);
    background: var(--surface-2);
    padding: 4px 18px;
    margin: 0 0 28px;
}

.pay-thanks-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.8125rem;
}

.pay-thanks-row:last-child { border-bottom: none; }
.pay-thanks-row span { color: var(--text-dim); flex-shrink: 0; }
.pay-thanks-row strong { color: var(--text); font-weight: 500; text-align: end; overflow-wrap: anywhere; }

.pay-thanks-timer {
    margin: 0 0 8px;
}

.pay-thanks-bar {
    height: 2px;
    background: var(--orange);
    transform-origin: right center;
    transform: scaleX(1);
    transition: transform 1s linear;
    margin-bottom: 12px;
}

.pay-thanks-countdown {
    font-size: 0.8125rem;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .pay-thanks-bar { transition: none; }
}

/* ─── Legacy compat (detail pages) ─── */
.page-header {
    padding: calc(var(--header) + 48px) 0 40px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p { color: var(--text-muted); font-size: 0.9375rem; }

.section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.card {
    background: var(--surface);
    padding: 24px;
}

.card-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.card-desc { font-size: 0.8125rem; color: var(--text-muted); }
.card-tag { font-size: 0.6875rem; color: var(--orange); letter-spacing: 0.06em; }
.card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); margin: -24px -24px 20px; }
.card-footer { margin-top: 16px; }

.text-muted { color: var(--text-muted); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-2 { gap: 16px; }
.items-center { align-items: center; }
.divider { height: 1px; background: var(--line); margin: 40px 0; }

.profile-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-logout-form {
    margin: 0;
}

.profile-danger-zone {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    max-width: 40rem;
}

.profile-danger-zone h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.profile-danger-zone p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.profile-delete-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.profile-delete-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    cursor: pointer;
}

.profile-delete-check input {
    margin-top: 4px;
    accent-color: var(--orange);
    flex-shrink: 0;
}

.profile-delete-btn {
    border-color: var(--red);
    color: var(--red);
}

.profile-delete-btn:hover {
    background: rgba(220, 38, 38, 0.08);
    border-color: var(--red);
    color: var(--red);
}

.profile-files-placeholder .product-row--placeholder {
    border-style: dashed;
    border-color: var(--line);
    opacity: 0.72;
}

.profile-files-placeholder .product-row--placeholder h3 {
    color: var(--text-muted);
    font-weight: 500;
}

.profile-file-slot-icon {
    opacity: 0.45;
}

.profile-file-slot-badge {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    border: 1px dashed var(--line);
    padding: 4px 10px;
    border-radius: 4px;
}

.profile-files-hint {
    margin-top: 14px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ─── Coming soon (public) ─── */
.page-coming-soon {
    min-height: 100vh;
    background: var(--black);
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 28px;
    text-align: center;
}

.coming-soon-inner {
    width: 100%;
    max-width: 40rem;
}

.coming-soon-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.coming-soon .eyebrow {
    margin-bottom: 8px;
}

.coming-soon-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin: 12px 0 16px;
}

.coming-soon-message {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    white-space: pre-line;
}

.coming-soon-rule {
    width: 48px;
    height: 2px;
    background: var(--orange);
    margin: 28px auto 16px;
}

.coming-soon-note {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.profile-files-hint a {
    color: var(--orange);
}
