@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-main: "Chakra Petch", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --bg: #060606;
    --surface: #111111;
    --surface-2: #181818;
    --text: #f5f5f5;
    --muted: #c9c9c9;
    --line: #2a2a2a;
    --accent: #ffffff;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

button,
input,
textarea,
select,
a {
    font-family: inherit;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000000;
}

.hero-topbar {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
    border-top: 1px solid #2b2b2b;
    border-bottom: 1px solid #1d1d1d;
    background: #080808;
}

.hero-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-top-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.hero-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.2vw, 1.15rem);
}

.hero-menu a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-menu a:hover {
    color: #d4d4d4;
}

.hero-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-top-btn {
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
}

.hero-top-btn-ghost {
    border: 1px solid #2d2d2d;
    color: #ffffff;
    background: #111111;
}

.hero-top-btn-solid {
    border: 1px solid #3b58ff;
    color: #ffffff;
    background: #3b58ff;
}

.hero-broadcast-bar {
    min-height: 42px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
}

.hero-broadcast-bar a {
    color: #000000;
    font-weight: 700;
    margin-left: 0.25rem;
}

.hero-content-wrap {
    width: min(1240px, 95%);
    margin: 1.45rem auto 2.2rem;
    display: grid;
    grid-template-columns: 0.92fr 1.6fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-copy {
    padding: 1rem 0;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 6.7vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 1.35rem;
}

.hero-description {
    width: min(520px, 100%);
    font-size: clamp(0.98rem, 1.4vw, 1.95rem);
    color: #f2f2f2;
    margin-bottom: 1.8rem;
}

.hero-cta {
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: rgba(0, 0, 0, 0.65);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.hero-media-card {
    min-height: clamp(420px, 66vh, 640px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #151515;
    background: #0c0c0c;
}

.hero-media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platforms-section {
    width: min(1260px, 96%);
    margin: 3.4rem auto 0;
    min-height: 76vh;
    padding: clamp(2rem, 4vw, 3.8rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 2rem;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.platforms-section::before {
    content: none;
}

.platforms-intro h2 {
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 0.97;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.platforms-intro p {
    color: #d4d4d4;
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 1.25rem;
}

.platforms-cta {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #3f5eff;
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.platforms-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 1rem;
    align-content: center;
}

.platforms-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    background: linear-gradient(180deg, #101010 0%, #070707 100%);
    color: #ececec;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.platforms-grid span:hover {
    transform: translateY(-3px);
    border-color: #3f5eff;
    background: linear-gradient(180deg, #151823 0%, #0d1018 100%);
}

.meta-explainer-section {
    width: min(1260px, 96%);
    margin: 0 auto 3rem;
    min-height: 76vh;
    padding: clamp(2rem, 4vw, 3.8rem);
    display: grid;
    grid-template-columns: 1.05fr 1.25fr;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.stories-section {
    width: min(1260px, 96%);
    margin: 3.2rem auto 2.5rem;
    padding: 0;
    background: transparent;
}

.stories-header {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.stories-header h2 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 0.98;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
}

.stories-header p {
    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.7;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.visual-break-section {
    width: 100%;
    margin: 2.6rem 0;
    padding: 0;
}

.visual-break-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #2e2e2e 18%, #4a66ff 50%, #2e2e2e 82%, transparent 100%);
    margin-bottom: 1.25rem;
}

.visual-banner {
    position: relative;
    width: 100%;
    min-height: clamp(220px, 38vh, 420px);
    border-top: 1px solid #272727;
    border-bottom: 1px solid #272727;
    overflow: hidden;
}

.visual-banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.75) 0%, rgba(2, 2, 2, 0.18) 62%, rgba(2, 2, 2, 0.75) 100%);
}

.visual-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.35rem;
    text-align: center;
}

.visual-banner-content p {
    color: #f2f2f2;
    font-size: clamp(1rem, 1.9vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.story-card {
    border: 1px solid #222222;
    border-radius: 10px;
    overflow: hidden;
    background: #0c0c0c;
}

.story-media {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.story-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.45) 100%);
}

.story-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-media-alt::after {
    background: linear-gradient(180deg, rgba(28, 21, 42, 0.05) 0%, rgba(35, 18, 40, 0.52) 100%);
}

.story-media-cool::after {
    background: linear-gradient(180deg, rgba(15, 30, 55, 0.05) 0%, rgba(9, 25, 45, 0.52) 100%);
}

.story-body {
    padding: 1rem;
}

.story-body h3 {
    font-size: 1.45rem;
    margin-bottom: 0.35rem;
}

.story-meta {
    color: #95a7ff;
    font-size: 0.86rem;
    margin-bottom: 0.8rem;
}

.story-body p {
    color: #cecece;
    font-size: 0.94rem;
    line-height: 1.55;
}

.meta-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.73rem;
    color: #95a7ff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.meta-explainer-copy h2 {
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    line-height: 0.97;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 580px;
}

.meta-explainer-copy p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 560px;
}

.meta-primary-action {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    border: 1px solid #3f5eff;
    color: #ffffff;
    background: #121830;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.meta-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.meta-pillar-card {
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 1.2rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #090909 100%);
    min-height: 170px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.meta-pillar-card:hover {
    transform: translateY(-3px);
    border-color: #3f5eff;
}

.meta-pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
}

.meta-pillar-card p {
    color: #cfcfcf;
    font-size: 0.94rem;
    line-height: 1.55;
}

.showcase-video-section {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.showcase-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.32) 70%);
}

.showcase-text {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.showcase-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.showcase-text p {
    color: var(--muted);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.contact-strip {
    width: min(1260px, 96%);
    margin: 4.5rem auto 0;
    padding: clamp(2.2rem, 4.8vw, 4rem);
    border: 1px solid #252525;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(78, 106, 255, 0.2) 0%, rgba(78, 106, 255, 0) 42%),
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, #111217 0%, #080808 65%);
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.45fr);
    gap: clamp(1.2rem, 2.4vw, 2.2rem);
    align-items: start;
    position: relative;
    overflow: hidden;
}

.contact-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(3, 3, 3, 0.95) 100%);
    pointer-events: none;
}

.contact-strip-head {
    max-width: 520px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.contact-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8ea0ff;
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.contact-strip-head h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 0.98;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.contact-strip-head p {
    color: #cfcfcf;
    line-height: 1.65;
    max-width: 500px;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
    position: relative;
    z-index: 1;
}

.contact-inline-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid #2c2c2c;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.94) 0%, rgba(7, 7, 7, 0.98) 100%);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #323232;
    border-radius: 10px;
    background: #0a0a0a;
    color: var(--text);
    padding: 0.82rem 0.9rem;
    font-size: 0.96rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-inline-form textarea {
    grid-column: 1 / -1;
    min-height: 125px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5f7aff;
    box-shadow: 0 0 0 2px rgba(95, 122, 255, 0.22);
}

.contact-form button {
    margin-top: 0.4rem;
    grid-column: 1 / span 2;
    border: 1px solid #4f6cff;
    border-radius: 10px;
    background: linear-gradient(90deg, #3048c9 0%, #4f6cff 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.82rem 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.main-footer {
    width: min(1260px, 96%);
    margin: 0 auto 1.6rem;
    border: 1px solid #222222;
    border-top: none;
    border-radius: 0 0 20px 20px;
    background:
        linear-gradient(180deg, #070707 0%, #040404 100%);
    padding: 1.35rem 1.2rem 1.45rem;
    text-align: center;
    color: #bdbdbd;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #2f4ed8 26%, #7a8eff 50%, #2f4ed8 74%, transparent 100%);
}

@media (max-width: 900px) {
    .hero-menu {
        display: none;
    }

    .hero-content-wrap {
        grid-template-columns: 1fr;
        margin-top: 1rem;
        gap: 1.2rem;
    }

    .hero-copy {
        padding: 0.5rem 0;
    }

    .hero-media-card {
        min-height: 320px;
    }

    .platforms-section {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        min-height: auto;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .meta-explainer-section {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        min-height: auto;
    }

    .meta-pillars {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .visual-banner {
        min-height: 170px;
    }

    .contact-inline-form {
        grid-template-columns: 1fr;
        padding: 0.9rem;
    }

    .contact-form button {
        grid-column: 1 / -1;
    }

    .contact-strip {
        grid-template-columns: 1fr;
        border-radius: 14px 14px 0 0;
        padding: 1.2rem;
    }

    .main-footer {
        border-radius: 0 0 14px 14px;
        margin-bottom: 1rem;
    }
}
