/* ═══════════════════════════════════════════════════════════════════════════
   HecatoNet Website Stylesheet
   Dark navy / gold / steel-blue aesthetic matching the in-game UI
   Shared by studio homepage and game pages
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
    --deep-navy: #0a0e1a;
    --panel-navy: #111827;
    --panel-navy-alpha: rgba(17, 24, 39, 0.92);
    --steel-blue: #2a3a5c;
    --gold: #d4a843;
    --bright-gold: #f0c040;
    --chalk-white: #e8e0d0;
    --dim-grey: #8899aa;
    --hp-green: #44cc44;
    --mp-teal: #44aacc;
    --cyan-link: #66ccff;
    --danger-red: #cc4444;

    /* Profession category colors */
    --prof-combat: #cc4444;
    --prof-crafting: #cc8844;
    --prof-gathering: #44aa44;
    --prof-social: #4488cc;
    --prof-commerce: #d4a843;

    --font-main: 'Noto Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --nav-height: 60px;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-main);
    background-color: var(--deep-navy);
    color: var(--chalk-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cyan-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--bright-gold);
}

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    color: var(--gold);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.section-subtitle {
    color: var(--dim-grey);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.subsection-title {
    color: var(--gold);
    font-size: 1.5rem;
    text-align: center;
    margin: 3rem 0 1.5rem;
}

.category-label {
    color: var(--dim-grey);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
}

/* ── Container ─────────────────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navigation ────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--panel-navy-alpha);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--steel-blue);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--chalk-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Mobile nav toggle (CSS-only checkbox hack) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--chalk-white);
    position: relative;
    transition: all 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

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

/* ── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb {
    background: var(--panel-navy);
    border-bottom: 1px solid var(--steel-blue);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--cyan-link);
}

.breadcrumb-sep {
    color: var(--dim-grey);
}

.breadcrumb span:last-child {
    color: var(--chalk-white);
}

/* ── Hero Section ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--chalk-white);
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--dim-grey);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ── Studio Hero (text-only, minimal) ──────────────────────────────────── */
.studio-hero {
    min-height: 400px;
}

.studio-hero .hero-bg img {
    opacity: 0.3;
}

.studio-hero .hero-tagline {
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--dim-grey);
}

/* ── Button ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: var(--gold);
    color: var(--deep-navy);
}

/* ── Platform Badges (Hero) ─────────────────────────────────────────────── */
.hero-platforms {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
}

/* ── Hero Actions ──────────────────────────────────────────────────────── */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Button Variants ───────────────────────────────────────────────────── */
.btn-discord {
    border-color: #5865F2;
    color: #5865F2;
}

.btn-discord:hover {
    background: #5865F2;
    color: #ffffff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ── Discord CTA Section ───────────────────────────────────────────────── */
.discord-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, var(--deep-navy) 100%);
    border-top: 1px solid var(--steel-blue);
    border-bottom: 1px solid var(--steel-blue);
}

.discord-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.discord-cta-content h2 {
    color: var(--chalk-white);
    margin-bottom: 1rem;
}

.discord-cta-content h2::after {
    display: none;
}

.discord-cta-content p {
    color: var(--dim-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── Sections ──────────────────────────────────────────────────────────── */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background: var(--panel-navy);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* ── Gold Divider ──────────────────────────────────────────────────────── */
.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 2rem;
    border: none;
}

/* ── About Section ─────────────────────────────────────────────────────── */
.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Center the last card if odd count */
.pillars-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

.pillar-card {
    background: var(--deep-navy);
    border: 1px solid var(--steel-blue);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s;
}

.pillar-card:hover {
    border-color: var(--gold);
}

.pillar-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pillar-card p {
    color: var(--dim-grey);
    font-size: 0.9rem;
}

/* ── Game Card (Studio Homepage) ───────────────────────────────────────── */
.game-cards {
    max-width: 800px;
    margin: 0 auto;
}

.game-card {
    display: block;
    background: var(--deep-navy);
    border: 1px solid var(--steel-blue);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    color: var(--chalk-white);
}

.game-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    color: var(--chalk-white);
}

.game-card-banner {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.game-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.game-card:hover .game-card-banner img {
    opacity: 1;
}

.game-card-body {
    padding: 2rem;
}

.game-card-body h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.game-card-body p {
    color: var(--dim-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.game-card-cta {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.game-card:hover .game-card-cta {
    color: var(--bright-gold);
}

/* ── Screenshots Section ───────────────────────────────────────────────── */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.screenshot {
    margin: 0;
    border: 1px solid var(--steel-blue);
    overflow: hidden;
    transition: border-color 0.3s;
}

.screenshot:hover {
    border-color: var(--gold);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot figcaption {
    padding: 0.75rem 1rem;
    background: var(--panel-navy);
    color: var(--dim-grey);
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

/* ── Features Grid ─────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--deep-navy);
    border: 1px solid var(--steel-blue);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    image-rendering: auto;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--dim-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Professions Section ───────────────────────────────────────────────── */
.professions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profession-card {
    background: var(--deep-navy);
    border: 1px solid var(--steel-blue);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.profession-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.profession-card h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.profession-card .prof-role {
    color: var(--mp-teal);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.profession-card .prof-desc {
    color: var(--dim-grey);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Profession category badges */
.prof-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.prof-badge--combat {
    background: rgba(204, 68, 68, 0.15);
    color: var(--prof-combat);
    border: 1px solid rgba(204, 68, 68, 0.3);
}

.prof-badge--crafting {
    background: rgba(204, 136, 68, 0.15);
    color: var(--prof-crafting);
    border: 1px solid rgba(204, 136, 68, 0.3);
}

.prof-badge--gathering {
    background: rgba(68, 170, 68, 0.15);
    color: var(--prof-gathering);
    border: 1px solid rgba(68, 170, 68, 0.3);
}

.prof-badge--social {
    background: rgba(68, 136, 204, 0.15);
    color: var(--prof-social);
    border: 1px solid rgba(68, 136, 204, 0.3);
}

.prof-badge--commerce {
    background: rgba(212, 168, 67, 0.15);
    color: var(--prof-commerce);
    border: 1px solid rgba(212, 168, 67, 0.3);
}

/* Elite Professions */
.elite-professions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.elite-category {
    background: var(--deep-navy);
    border: 1px solid var(--steel-blue);
    padding: 1.25rem;
}

.elite-category h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.elite-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.elite-list li {
    color: var(--dim-grey);
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(136, 153, 170, 0.2);
    background: rgba(136, 153, 170, 0.05);
}

/* Conduit Teaser */
.conduit-teaser {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--steel-blue);
    background: rgba(10, 14, 26, 0.8);
}

.conduit-teaser p {
    color: var(--dim-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Races Section ─────────────────────────────────────────────────────── */
.races-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.race-card {
    background: var(--deep-navy);
    border: 1px solid var(--steel-blue);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.race-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.race-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.race-card h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.race-card .race-identity {
    color: var(--chalk-white);
    font-style: italic;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    min-height: 5em;
    line-height: 1.5;
}

.race-card .race-hook {
    color: var(--dim-grey);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.race-card .race-stats {
    color: var(--mp-teal);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.race-card .race-restriction {
    display: inline-block;
    color: var(--dim-grey);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(136, 153, 170, 0.3);
    margin-top: 0.25rem;
}

/* ── World Lore Section ────────────────────────────────────────────────── */
.world-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.world-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.world-content strong {
    color: var(--gold);
}

.world-content em {
    color: var(--mp-teal);
}

.world-nations {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.nation-badge {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.world-teaser {
    color: var(--dim-grey);
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Nation Cards */
.nations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.nation-card {
    background: var(--panel-navy);
    border: 1px solid var(--steel-blue);
    padding: 1.25rem;
    transition: border-color 0.3s;
}

.nation-card:hover {
    border-color: var(--gold);
}

.nation-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.nation-card p {
    color: var(--dim-grey);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* World Stats */
.world-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.world-stat {
    text-align: center;
}

.world-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.world-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--dim-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Transport Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2.5rem;
}

.transport-card {
    background: var(--panel-navy);
    border: 1px solid var(--steel-blue);
    padding: 1rem;
    text-align: center;
    transition: border-color 0.3s;
}

.transport-card:hover {
    border-color: var(--gold);
}

.transport-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.transport-card p {
    color: var(--dim-grey);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
    background: var(--panel-navy);
    border-top: 1px solid var(--steel-blue);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-logo img {
    height: 32px;
    margin: 0 auto 1rem;
}

.footer-text {
    color: var(--dim-grey);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-status {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: var(--dim-grey);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ── Responsive: Tablet (< 1200px) ────────────────────────────────────── */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .races-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .professions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .elite-professions {
        grid-template-columns: repeat(2, 1fr);
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Responsive: Mobile (< 768px) ─────────────────────────────────────── */
@media (max-width: 767px) {
    :root {
        --nav-height: 56px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: 0.1em;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .studio-hero {
        min-height: 300px;
    }

    /* Mobile nav */
    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--panel-navy);
        border-bottom: 1px solid var(--steel-blue);
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav-toggle:checked ~ .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Hamburger animation */
    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }
    .nav-toggle:checked + .nav-toggle-label span::before {
        top: 0;
        transform: rotate(45deg);
    }
    .nav-toggle:checked + .nav-toggle-label span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* Grids */
    .screenshots-grid,
    .features-grid,
    .professions-grid {
        grid-template-columns: 1fr;
    }

    .races-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid > :last-child:nth-child(odd) {
        max-width: 100%;
    }

    .elite-professions {
        grid-template-columns: 1fr;
    }

    .transport-grid {
        grid-template-columns: 1fr;
    }

    .nations-grid {
        grid-template-columns: 1fr;
    }

    .world-nations {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .world-stats {
        gap: 1.5rem;
    }

    .world-stat-number {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Game card responsive */
    .game-card-body {
        padding: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-platforms {
        gap: 0.5rem;
    }
}

/* ── Utility ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-dim { color: var(--dim-grey); }
.text-teal { color: var(--mp-teal); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
