:root {
    --bg: #05070b;
    --panel: #101723;
    --panel-2: #182332;
    --gold: #d9a441;
    --gold-2: #f0cf82;
    --blue: #3aa0ff;
    --blue-soft: rgba(58, 160, 255, .18);
    --line: rgba(240, 207, 130, 0.24);
    --text: #f5efe3;
    --muted: #afbdd0;
    --danger: #d46b5d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(58, 160, 255, .16), transparent 32%),
        radial-gradient(circle at 18% 12%, rgba(217, 164, 65, .12), transparent 28%),
        var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.media-frame {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080805;
    border: 1px solid rgba(214, 170, 82, .18);
}

.media-frame img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
}

.hero-banner-frame,
.wide-banner-frame {
    width: 100%;
    max-width: 960px;
    overflow: hidden;
    background: #05070b;
    border: 1px solid rgba(58, 160, 255, .28);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.hero-banner-frame img,
.wide-banner-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.category-card-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070704;
}

.category-card-media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
}

.post-card-media {
    height: 190px;
    margin-bottom: 16px;
}

.article-image-wrap {
    width: 100%;
    max-width: 860px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    background: #070704;
    border: 1px solid rgba(214, 170, 82, .18);
}

.article-image-wrap img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-visual,
.hero-image-wrap,
.card-image-wrap,
.image-placeholder {
    display: block;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #2b1d08, #080704 48%, #5f4314);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    min-height: 160px;
}

.image-placeholder::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    min-height: 120px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 7, 11, 0.94);
    border-bottom: 1px solid var(--line);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 20px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand-symbol {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    color: var(--gold-2);
    box-shadow: inset 0 0 18px rgba(58, 160, 255, .16);
}

.primary-nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

.primary-nav a:hover,
.text-link:hover {
    color: var(--gold-2);
}

.cta-buttons,
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 14px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #74bfff);
    border-color: rgba(240, 207, 130, .8);
    color: #120d05;
}

.btn-outline {
    color: var(--gold-2);
    background: transparent;
}

.hero,
.page-hero,
.section,
.split-section,
.content-band,
.article-page,
.faq-list,
.footer-cta,
.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 20px;
}

.hero {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    min-height: 560px;
}

.hero-copy {
    position: relative;
}

.hero-copy::before {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
}

.hero-copy,
.hero-media,
.hero-visual,
.hero-inner > *,
.category-grid > *,
.post-grid > *,
.split-section > *,
.content-band > *,
.footer-grid > * {
    min-width: 0;
}

.hero-copy h1,
.page-hero h1,
.article-page h1 {
    margin: 0 0 18px;
    max-width: 820px;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.05;
}

.hero-copy p,
.page-hero p,
.lead {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.side-panel,
.answer-box,
.post-card,
.faq-item,
.category-card,
.list-item {
    background: linear-gradient(145deg, rgba(16, 23, 35, .96), rgba(8, 10, 13, .96));
    border: 1px solid var(--line);
}

.hero-media {
    min-width: 0;
}

.hero-summary {
    padding: 18px 0 0;
}

.hero-summary span {
    color: var(--blue);
}

.hero-summary strong {
    display: block;
    margin: 10px 0;
    font-size: 34px;
    line-height: 1.1;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2,
.mid-cta h2,
.content-main h2 {
    margin: 0;
    font-size: 30px;
}

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

.category-card,
.post-card,
.faq-item,
.list-item {
    display: block;
    padding: 22px;
}

.category-card {
    min-width: 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(16, 23, 35, .96), rgba(10, 12, 15, .96));
    border: 1px solid rgba(214, 170, 82, .18);
}

.category-card:hover,
.list-item:hover,
.post-card:hover,
.faq-item:hover {
    border-color: rgba(58, 160, 255, .42);
    box-shadow: 0 16px 46px rgba(0, 0, 0, .28);
}

.category-card span {
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 700;
}

.category-card strong,
.list-item span {
    display: block;
    margin: 8px 0;
    font-size: 19px;
}

.category-card p,
.list-item p,
.post-card p,
.faq-item p,
.footer-grid p,
.mid-cta p,
.content-main p,
.side-panel p,
.article-body p,
.answer-box p {
    color: var(--muted);
}

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

.list-stack {
    display: grid;
    gap: 12px;
}

.mid-cta {
    max-width: 1180px;
    margin: 24px auto 56px;
    padding: 34px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mid-cta.inline {
    margin: 34px 0 0;
}

.content-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.content-main,
.side-panel {
    padding: 26px;
}

.feature-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.feature-row span {
    border: 1px solid var(--line);
    color: var(--gold-2);
    padding: 8px 12px;
}

.app-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.app-step {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(58, 160, 255, .24);
    background: linear-gradient(145deg, rgba(16, 23, 35, .94), rgba(7, 8, 10, .94));
}

.app-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border: 1px solid rgba(240, 207, 130, .5);
    color: var(--gold-2);
    font-weight: 700;
}

.app-step strong {
    display: block;
    margin-bottom: 10px;
    color: #fff8e6;
    font-size: 20px;
}

.app-step p {
    margin: 0;
    color: var(--muted);
}

.app-access-band {
    border-top: 1px solid rgba(58, 160, 255, .2);
    border-bottom: 1px solid rgba(240, 207, 130, .16);
}

.post-card h2,
.faq-item h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.article-page {
    max-width: 860px;
}

.answer-box,
.article-body {
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.article-body-inline {
    padding: 0;
    border: 0;
    background: transparent;
}

.article-body h2,
.article-body h3 {
    color: var(--gold-2);
}

.article-body ul,
.article-body ol {
    color: var(--muted);
}

.related-links-section {
    max-width: 1180px;
    margin: 34px auto 56px;
    padding: 30px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(16, 23, 35, 0.94), rgba(5, 7, 11, 0.94));
}

.article-page .related-links-section {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.related-links-section h2 {
    margin: 0 0 18px;
    color: var(--gold-2);
    font-size: 26px;
}

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

.related-links-column {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.related-link-item {
    display: block;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(214, 170, 82, .2);
    background: rgba(13, 13, 8, .84);
    color: var(--gold-2);
    font-weight: 700;
}

.related-link-item:hover {
    border-color: var(--blue);
    background: rgba(58, 160, 255, .12);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #03050a;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 20px;
}

.footer-grid a {
    display: block;
    color: var(--muted);
    margin: 6px 0;
}

.mobile-fixed-cta {
    display: none;
}

.go-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 20px;
}

.go-box {
    max-width: 520px;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--panel);
    text-align: center;
}

.t2-app-hero,
.t2-step-flow,
.t2-device-guide,
.t2-category-mini,
.t2-faq-strip,
.t2-news-brief,
.t2-bottom-cta {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.t2-app-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: 34px;
    align-items: center;
    min-height: 640px;
    padding: 58px 0 42px;
}

.t2-app-copy,
.t2-phone-stage,
.t2-phone-shell,
.t2-mini-link,
.t2-news-item,
.t2-faq-row {
    min-width: 0;
}

.t2-kicker,
.t2-section-title p,
.t2-bottom-cta p {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.t2-app-copy h1 {
    margin: 0 0 20px;
    max-width: 760px;
    font-size: clamp(38px, 7vw, 86px);
    line-height: .98;
}

.t2-app-copy > p {
    max-width: 660px;
    color: var(--muted);
    font-size: 19px;
}

.t2-hero-actions {
    margin-top: 24px;
}

.t2-phone-stage {
    display: flex;
    justify-content: center;
}

.t2-phone-shell {
    width: min(100%, 390px);
    padding: 18px;
    border: 1px solid rgba(58, 160, 255, .36);
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(16, 23, 35, .98), rgba(4, 5, 8, .98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.t2-phone-screen {
    overflow: hidden;
    border-radius: 22px;
    background: #05070b;
}

.t2-phone-screen img {
    width: 100%;
    height: auto;
}

.t2-phone-meta {
    padding: 18px 4px 4px;
}

.t2-phone-meta span,
.t2-phone-meta strong {
    display: block;
}

.t2-phone-meta span {
    color: var(--gold-2);
    font-size: 13px;
}

.t2-phone-meta strong {
    margin-top: 6px;
    color: #fff8e6;
}

.t2-section-title {
    margin-bottom: 20px;
}

.t2-section-title h2,
.t2-bottom-cta h2 {
    margin: 0;
    font-size: 30px;
}

.t2-step-flow,
.t2-category-mini,
.t2-faq-strip,
.t2-news-brief {
    padding: 44px 0;
}

.t2-step-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.t2-step-card,
.t2-device-card,
.t2-mini-link,
.t2-news-item,
.t2-faq-row {
    border: 1px solid rgba(58, 160, 255, .22);
    background: linear-gradient(145deg, rgba(16, 23, 35, .94), rgba(6, 8, 12, .94));
}

.t2-step-card {
    padding: 24px;
}

.t2-step-card em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border: 1px solid rgba(240, 207, 130, .44);
    color: var(--gold-2);
    font-style: normal;
    font-weight: 700;
}

.t2-step-card strong,
.t2-device-card h2,
.t2-mini-link strong,
.t2-news-item strong,
.t2-faq-row strong {
    color: #fff8e6;
}

.t2-step-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 21px;
}

.t2-step-card p,
.t2-device-card p,
.t2-news-item p,
.t2-faq-row p,
.t2-bottom-cta span {
    color: var(--muted);
}

.t2-device-guide {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr) minmax(0, .9fr);
    gap: 18px;
    align-items: stretch;
    padding: 28px 0 48px;
}

.t2-device-card {
    padding: 26px;
}

.t2-device-card-main {
    border-color: rgba(240, 207, 130, .34);
}

.t2-device-card span {
    color: var(--blue);
    font-weight: 700;
}

.t2-mini-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.t2-mini-link {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.t2-mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    overflow: hidden;
    background: #05070b;
}

.t2-mini-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.t2-mini-link span,
.t2-news-item span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.t2-faq-list {
    display: grid;
    gap: 10px;
}

.t2-faq-row {
    display: grid;
    grid-template-columns: 42px minmax(0, .75fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
}

.t2-faq-row span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(240, 207, 130, .36);
    color: var(--gold-2);
    font-weight: 700;
}

.t2-news-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.t2-news-item {
    display: block;
    padding: 18px;
}

.t2-news-item strong {
    display: block;
    margin: 8px 0;
    font-size: 18px;
}

.t2-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    padding: 30px 0;
    border-top: 1px solid rgba(58, 160, 255, .22);
    border-bottom: 1px solid rgba(240, 207, 130, .2);
}

@media (max-width: 900px) {
    .topbar,
    .content-band,
    .footer-cta,
    .split-section {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: grid;
    }

    .primary-nav {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .category-grid,
    .post-grid,
    .app-step-grid,
    .t2-step-track,
    .t2-device-guide,
    .t2-mini-grid,
    .t2-news-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .t2-app-hero,
    .t2-bottom-cta {
        grid-template-columns: 1fr;
        display: grid;
    }

    .t2-faq-row {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .t2-faq-row p {
        grid-column: 2;
    }

    .header-actions {
        display: none;
    }

    body {
        padding-bottom: 72px;
    }

    .mobile-fixed-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        background: rgba(8, 7, 4, 0.96);
        border-top: 1px solid var(--line);
    }

    .mobile-fixed-cta .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-wrap {
        width: min(100% - 24px, 1180px);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: auto;
    }

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

    .related-links-grid {
        grid-template-columns: 1fr;
    }

    .post-card-media {
        min-height: 160px;
    }
}
