@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter-var.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/montserrat-var.woff2') format('woff2');
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --yellow: #ffc531;
    --yellow-deep: #f2b705;
    --purple: #6c2bd9;
    --purple-2: #8b5cf6;
    --purple-deep: #4c1d95;
    --purple-tint: #f1eafe;
    --ink: #0e0e12;
    --ink-soft: #46464f;
    --muted: #6d6d78;
    --line: #ececed;
    --bg: #ffffff;
    --bg-alt: #f7f7f9;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 10px rgba(14, 14, 18, 0.06);
    --shadow-md: 0 16px 40px rgba(14, 14, 18, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--ink-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--ink);
    line-height: 1.15;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
}

/* Pills / tags */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--purple-tint);
    color: var(--purple);
}

.pill-dark {
    background: var(--ink);
    color: #fff;
}

.pill-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
    background: var(--yellow);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--yellow-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}

.btn:active {
    transform: scale(0.97);
}

/* Reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section scaffolding */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    margin-bottom: 44px;
}

.section-head h1,
.section-head h2 {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-top: 14px;
}

.section-head p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 14px;
    max-width: 640px;
}

.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    white-space: nowrap;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--ink);
}

/* Header */
.header {
    background-color: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow 0.3s;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    height: 88px;
    width: auto;
}

.nav {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--purple);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--ink);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Hero */
.hero {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #fbfaff 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 18px 0 16px;
    letter-spacing: -0.01em;
}

.hero-text p.hero-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
}

.dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: all 0.25s;
}

.dot.active::after {
    background: var(--ink);
    width: 22px;
    border-radius: 5px;
}

.arrows {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.arrow-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1122 / 1402;
    border-radius: 28px;
    background: linear-gradient(160deg, var(--purple) 0%, var(--purple-deep) 100%);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.hero-slide-frame {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
}

.hero-slide-frame picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.badge-boom {
    position: absolute;
    top: -14px;
    left: -10px;
    background: var(--yellow);
    color: var(--ink);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    transform: rotate(-8deg);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.04em;
}

/* AI overview strip */
.overview {
    padding: 48px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.overview .pill {
    margin-bottom: 16px;
}

.overview p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 980px;
}

.overview strong {
    color: var(--ink);
}

/* Platform downloads */
.download-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 210px;
    padding: 28px;
    border-radius: var(--radius-md);
}

.download-card h2 {
    font-size: 15px;
    font-weight: 800;
}

.download-card.android { background: #eaf6ee; }
.download-card.android h3 { color: #256339; }
.download-card.ios { background: #fbeaea; }
.download-card.ios h3 { color: #8a2323; }
.download-card.windows { background: #edeffc; }
.download-card.windows h3 { color: var(--ink); }

.download-btn {
    width: 100%;
    padding: 17px 22px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.download-card.android .download-btn { background: #2f7d4f; }
.download-card.ios .download-btn { background: #b23a3a; }
.download-card.windows .download-btn { background: #3b5fe3; }

.download-badge-row {
    display: flex;
    justify-content: flex-end;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px 10px 16px;
    box-shadow: var(--shadow-sm);
}

.download-badge .label {
    font-weight: 800;
    font-size: 14px;
    color: var(--ink);
}

.download-badge .icon-box {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}

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

/* Featured games bento */
.games-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.game-card {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.game-card.large {
    grid-row: span 2;
}

.game-tag {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.game-card h3 {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.game-card p {
    position: relative;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    font-weight: 600;
}

.game-card.c1 { background: linear-gradient(150deg, #2563eb, #0e1b6b); }
.game-card.c2 { background: linear-gradient(150deg, #16a34a, #0a4a2c); }
.game-card.c3 { background: linear-gradient(150deg, #dc2626, #6f0f16); }
.game-card.c4 { background: linear-gradient(150deg, #8b5cf6, #4c1d95); }

.game-card.cta {
    background: var(--yellow);
    color: var(--ink);
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
}

.game-card.cta .cta-arrow {
    align-self: flex-end;
    font-size: 26px;
    font-weight: 900;
}

.game-card.cta h3 {
    color: var(--ink);
    text-shadow: none;
    font-size: 18px;
}

.game-card.cta p {
    color: rgba(14, 14, 18, 0.7);
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .game-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 560px) {
    .games-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    .game-card.large,
    .game-card {
        grid-column: auto;
        grid-row: auto;
        height: 200px;
    }
}

/* Pioneer band */
.pioneer {
    text-align: center;
    padding: 90px 0;
}

.pioneer-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 24px;
}

.pioneer h2 {
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.2;
}

.pioneer p {
    color: var(--muted);
    max-width: 560px;
    margin: 18px auto 0;
    font-size: 15px;
}

/* Feature cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

/* Two-column highlights */
.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.highlight-box h3 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.highlight-box p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

/* Promo banner */
.promo-banner {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 2172 / 724;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.promo-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Latest news */
.news-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

.news-side {
    display: grid;
    grid-template-rows: 1fr 1fr auto;
    gap: 20px;
}

.news-card {
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 160px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-card.featured {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--purple) 0%, var(--purple-deep) 100%);
    color: #fff;
    min-height: 100%;
}

.news-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-badge-row {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 8px;
}

.frost-chip {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.news-card.light {
    background: var(--bg-alt);
    border: 1px solid var(--line);
}

.news-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.news-all {
    background: var(--yellow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.25s ease;
}

.news-all:hover {
    transform: translateY(-4px);
}

@media (max-width: 860px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card.featured {
        min-height: 220px;
    }
}

/* FAQ */
.faq-list {
    max-width: 820px;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 2px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--purple);
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--ink);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--yellow);
    border-color: var(--yellow);
}

.faq-a {
    padding: 0 30px 22px 2px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 720px;
}

/* About */
.about-block {
    max-width: 820px;
}

.about h3 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 34px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.article-body h2 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 34px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about strong {
    color: var(--ink);
}

.about ul {
    list-style: none;
    margin: 18px 0;
}

.about li {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
}

.about li:before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

.about li strong {
    color: var(--ink);
}

/* Policies */
.policy-grid {
    display: grid;
    gap: 18px;
}

.policy-card {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--purple);
    border-radius: var(--radius-sm);
    padding: 26px 30px;
    transition: all 0.25s ease;
}

.policy-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}

.policy-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.policy-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.policy-card strong {
    color: var(--ink);
}

/* CTA band */
.cta-band {
    background: var(--yellow);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta-text p {
    font-size: 15px;
    color: #4a3b00;
    max-width: 460px;
    margin-bottom: 26px;
}

.cta-input-group {
    display: flex;
    gap: 10px;
    max-width: 460px;
}

.cta-input {
    flex: 1;
    padding: 15px 18px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
}

.cta-input:focus {
    outline: 3px solid rgba(14, 14, 18, 0.15);
}

.cta-response {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    border-left: 4px solid var(--ink);
    font-size: 14px;
    color: var(--ink);
    display: none;
    max-width: 460px;
}

.cta-response.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-visual-mark {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 88px;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
    .cta-band {
        grid-template-columns: 1fr;
        padding: 44px 28px;
        text-align: center;
    }
    .cta-input-group {
        margin: 0 auto;
    }
    .cta-response {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-visual {
        order: -1;
    }
    .cta-visual-mark {
        width: 140px;
        height: 140px;
        font-size: 60px;
    }
}

/* Article / blog pages */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 22px;
}

.breadcrumb:hover {
    color: var(--purple);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0 18px;
}

.article-title {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.15;
    max-width: 820px;
}

.article-lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 720px;
    margin: 18px 0 4px;
}

.media-frame {
    display: block;
    overflow: hidden;
    background: linear-gradient(160deg, var(--purple) 0%, var(--purple-deep) 100%);
    text-decoration: none;
}

.media-frame picture {
    display: block;
    width: 100%;
    height: 100%;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.media-frame.portrait { aspect-ratio: 1122 / 1402; }
.media-frame.landscape { aspect-ratio: 1536 / 1024; }

.media-frame.hero {
    border-radius: var(--radius-lg);
    margin: 32px 0 40px;
    max-width: 380px;
    box-shadow: var(--shadow-md);
}

.media-frame.hero.landscape {
    max-width: 760px;
}

.media-frame.thumb {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 820px;
}

a.news-card {
    text-decoration: none;
    color: inherit;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.blog-list-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-list-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-list-body {
    padding: 22px;
}

.blog-list-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 8px 0 14px;
}

@media (max-width: 860px) {
    .blog-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    .article-title {
        font-size: 30px;
    }
    .media-frame.hero.landscape {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    padding: 64px 0 30px;
    color: var(--muted);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-section a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--purple);
}

.footer-section p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section strong {
    color: var(--ink);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--purple);
}

/* Scroll shadow state */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(14, 14, 18, 0.08);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
    }
    .hero-visual-card {
        max-width: 300px;
    }
    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav,
    .header-link {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .logo-img {
        height: 56px;
    }
    .header.nav-open .nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--line);
        gap: 16px;
        box-shadow: var(--shadow-sm);
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, auto);
        row-gap: 20px;
    }
    .section {
        padding: 64px 0;
    }
    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-head h1,
    .section-head h2,
    .pioneer h2 {
        font-size: 28px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .cta-input-group {
        flex-direction: column;
    }
}
