/* ==========================================================
   Armory Forge Systems — The Signet "Go" Page
   Link-in-bio · Newspaper style
   ========================================================== */

:root {
    --forge-black: #0f0f0f;
    --forge-dark: #141414;
    --forge-panel: #1a1a1a;
    --forge-orange: #ff6b00;
    --forge-white: #ffffff;
    --forge-gray: #999999;
    --forge-light-gray: #cccccc;
    --forge-border: rgba(255, 107, 0, .15);
}

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

body {
    background: var(--forge-black);
    color: var(--forge-white);
    font-family: 'Georgia', 'Times New Roman', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

/* ═══════════════════════════════════════════
   MASTHEAD
   ═══════════════════════════════════════════ */

.masthead {
    text-align: center;
    padding: 48px 20px 28px;
    max-width: 600px;
    width: 100%;
}

.masthead-seal {
    width: 90px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px rgba(255, 107, 0, .25));
    animation: sealGlow 4s ease-in-out infinite;
}

@keyframes sealGlow {
    0%, 100% { filter: drop-shadow(0 0 16px rgba(255, 107, 0, .25)); }
    50%      { filter: drop-shadow(0 0 28px rgba(255, 140, 20, .40)); }
}

.masthead h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--forge-white);
    margin-bottom: 6px;
}

.masthead-sub {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forge-gray);
    margin-bottom: 20px;
}

.masthead-rule {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--forge-orange),
        transparent
    );
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
   LINK GRID
   ═══════════════════════════════════════════ */

.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 680px;
    width: 100%;
    padding: 8px 0 40px;
}

/* ── Card ── */

.link-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .06);
    background: var(--forge-panel);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    border-color: var(--forge-orange);
    box-shadow:
        0 8px 24px rgba(255, 107, 0, .20),
        0 0 40px rgba(255, 107, 0, .08);
}

/* ── Card image ── */

.card-img {
    position: absolute;
    inset: 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.link-card:hover .card-img img {
    transform: scale(1.04);
}

/* ── Gradient overlay ── */

.card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .75) 0%,
        rgba(0, 0, 0, .15) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* ── Card label ── */

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 12px;
    z-index: 2;
    pointer-events: none;
}

.card-tag {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forge-white);
    background: var(--forge-orange);
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.card-title {
    display: block;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forge-white);
    line-height: 1.3;
}

/* ── Pending card (link not yet set) ── */

.link-card--pending {
    cursor: default;
    opacity: .85;
}

.link-card--pending:hover {
    transform: none;
    border-color: rgba(255, 255, 255, .06);
    box-shadow: none;
}

.link-card--pending .card-img img {
    transition: none;
}

.link-card--pending:hover .card-img img {
    transform: none;
}

.link-card--pending .card-tag {
    background: #444;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.go-footer {
    text-align: center;
    padding: 32px 20px 48px;
    max-width: 600px;
    width: 100%;
    margin-top: auto;
}

.footer-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .10),
        transparent
    );
    margin-bottom: 28px;
}

.footer-mark {
    width: 48px;
    height: auto;
    margin-bottom: 12px;
    opacity: .6;
}

.footer-tagline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forge-gray);
    margin-bottom: 8px;
}

.footer-copy {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .7rem;
    color: #555;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75rem;
}

.footer-social a {
    color: var(--forge-gray);
    text-decoration: none;
    transition: color .25s ease;
}

.footer-social a:hover {
    color: var(--forge-orange);
}

.social-divider {
    color: #444;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (min-width: 500px) {
    .link-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .card-title {
        font-size: 1.1rem;
    }
}

@media (min-width: 700px) {
    .link-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .masthead {
        padding: 64px 20px 36px;
    }

    .masthead h1 {
        font-size: 3rem;
    }
}

@media (max-width: 360px) {
    .link-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
