:root {
    --bg: #050608;
    --bg-soft: #101317;
    --ink: #f6efe6;
    --muted: #c8b8a7;
    --line: rgba(246, 239, 230, 0.12);
    --card: rgba(18, 21, 24, 0.8);
    --accent: #f08d49;
    --accent-soft: #f4c978;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(240, 141, 73, 0.18), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(244, 201, 120, 0.08), transparent 24%),
        linear-gradient(135deg, #020304 0%, var(--bg) 44%, #0f1419 100%);
    font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    z-index: 0;
}

body::before {
    top: 7%;
    right: 8%;
    width: 18rem;
    height: 18rem;
    background: rgba(240, 141, 73, 0.12);
}

body::after {
    left: -4rem;
    bottom: 6%;
    width: 20rem;
    height: 20rem;
    background: rgba(244, 201, 120, 0.08);
}

.page-shell {
    position: relative;
    isolation: isolate;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.grain {
    position: fixed;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
    z-index: -1;
}

.site-header,
.hero,
.ticker,
.site-footer {
    opacity: 0;
    transform: translateY(22px);
    animation: rise 0.9s ease forwards;
}

.hero {
    animation-delay: 0.12s;
}

.ticker {
    animation-delay: 0.24s;
}

.site-footer {
    animation-delay: 0.36s;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--accent) 0%, #b8541d 100%);
    color: #160b05;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.brand-text {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.status-pill {
    margin: 0;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(246, 239, 230, 0.12);
    border-radius: 999px;
    background: rgba(17, 20, 24, 0.74);
    color: var(--muted);
    font-size: 0.95rem;
    backdrop-filter: blur(18px);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem;
    border: 1px solid rgba(246, 239, 230, 0.12);
    border-radius: 999px;
    background: rgba(17, 20, 24, 0.72);
    backdrop-filter: blur(18px);
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    min-height: 2.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.lang-link:hover,
.lang-link:focus-visible {
    transform: translateY(-1px);
    color: var(--ink);
}

.lang-link.active {
    background: rgba(240, 141, 73, 0.16);
    color: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.4rem;
    align-items: center;
    min-height: calc(100vh - 14rem);
}

.hero-copy {
    max-width: 42rem;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.26em;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 6.3rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.lead {
    margin: 1.5rem 0 0;
    max-width: 38rem;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
    color: #170d07;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.button-secondary {
    border-color: rgba(246, 239, 230, 0.12);
    background: rgba(17, 20, 24, 0.68);
    color: var(--ink);
}

.hero-panel {
    position: relative;
    min-height: 30rem;
    display: grid;
    place-items: center;
}

.panel-card {
    position: relative;
    width: min(100%, 29rem);
    padding: 1.6rem;
    border: 1px solid rgba(246, 239, 230, 0.1);
    border-radius: var(--radius-xl);
    background: var(--card);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
}

.panel-top,
.panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.panel-kicker,
.panel-footer {
    color: var(--muted);
    font-size: 0.95rem;
}

.panel-live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
}

.panel-live-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 rgba(240, 141, 73, 0.28);
    animation: pulse 1.8s ease infinite;
}

.panel-title {
    margin: 1.2rem 0 1rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.panel-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.panel-list li {
    position: relative;
    padding: 1rem 0 1rem 1.5rem;
    color: var(--ink);
    line-height: 1.6;
    border-top: 1px solid var(--line);
}

.panel-list li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 1.55rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.panel-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.orbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 9s ease-in-out infinite;
}

.orbit-one {
    top: 5%;
    right: 10%;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(246, 239, 230, 0.14);
    background: radial-gradient(circle, rgba(244, 201, 120, 0.2) 0%, transparent 70%);
}

.orbit-two {
    bottom: 6%;
    left: 6%;
    width: 5.5rem;
    height: 5.5rem;
    background: radial-gradient(circle, rgba(240, 141, 73, 0.22) 0%, transparent 70%);
    animation-duration: 11s;
    animation-delay: -1.5s;
}

.ticker {
    overflow: hidden;
    margin: 2rem 0;
    border-block: 1px solid rgba(246, 239, 230, 0.1);
    background: rgba(17, 20, 24, 0.52);
}

.ticker-track {
    display: flex;
    gap: 2.2rem;
    width: max-content;
    padding: 0.9rem 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    animation: ticker 26s linear infinite;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 141, 73, 0.28);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(240, 141, 73, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(240, 141, 73, 0);
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .page-shell {
        width: min(100% - 1.4rem, 1180px);
        padding-top: 1.25rem;
    }

    .site-header,
    .site-footer,
    .panel-top,
    .panel-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-tools {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.6rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .hero-panel {
        min-height: auto;
        padding-bottom: 1rem;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(100% - 1rem, 1180px);
    }

    .site-header {
        margin-bottom: 2.4rem;
    }

    .brand-mark {
        width: 2.8rem;
        height: 2.8rem;
    }

    .button {
        width: 100%;
    }

    .panel-card {
        padding: 1.25rem;
        border-radius: 24px;
    }
}
