/* ============================================================
   KNIFEBASE — pitch mockup design system
   Dark forge aesthetic: charcoal, steel gradients, ember amber
   ============================================================ */

:root {
    --bg: #0a0a0c;
    --bg-raised: #121215;
    --panel: #17171b;
    --panel-2: #1d1d22;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #ececee;
    --text-dim: #9d9da6;
    --text-faint: #63636d;
    --amber: #f5a524;
    --amber-deep: #d97706;
    --ember: #ff7a1a;
    --good: #4ade80;
    --radius: 14px;
    --radius-sm: 10px;
    --font-display: 'New York', ui-serif, Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

::selection { background: rgba(245, 165, 36, 0.3); }

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }

/* ---------- typography ---------- */

.display {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber));
}

.steel-text {
    background: linear-gradient(180deg, #f4f4f5 0%, #c8c8ce 45%, #808089 80%, #b7b7bf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.muted { color: var(--text-dim); }

/* ---------- header / nav ---------- */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 12, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 17px;
    color: #0a0a0c;
    background: linear-gradient(135deg, #f4f4f5, #b7b7bf 50%, #6d6d76);
    clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
    transition: transform 0.5s var(--ease-out);
}

.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }

.logo-word { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }

.logo-word em { font-style: normal; color: var(--amber); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
    padding: 9px 15px;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.25s, background 0.25s;
    position: relative;
}

.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.main-nav a.active { color: var(--amber); }

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--amber);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 650;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.25s, border-color 0.25s, color 0.25s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #131309;
    box-shadow: 0 10px 30px -12px rgba(245, 165, 36, 0.55);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(245, 165, 36, 0.65); }

.btn-ghost { border-color: var(--line-strong); color: var(--text); }

.btn-ghost:hover { border-color: rgba(245, 165, 36, 0.55); color: var(--amber); transform: translateY(-2px); }

.btn-sm { padding: 8px 16px; font-size: 13.5px; border-radius: 9px; }

/* ---------- hero ---------- */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg, .hero-bg::after {
    position: absolute;
    inset: -12% 0;
    z-index: -2;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    background:
        linear-gradient(180deg, rgba(10, 10, 12, 0.55) 0%, rgba(10, 10, 12, 0.25) 40%, rgba(10, 10, 12, 0.92) 88%, var(--bg) 100%),
        radial-gradient(ellipse 60% 50% at 22% 60%, rgba(10, 10, 12, 0.25), transparent);
}

.hero-content { padding: 140px 0 120px; max-width: 700px; }

.hero h1 { font-size: clamp(44px, 7vw, 84px); margin: 22px 0 26px; }

.hero p.lede { font-size: clamp(17px, 2vw, 21px); color: var(--text-dim); max-width: 540px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    translate: -50% 0;
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--line-strong);
    border-radius: 20px;
    opacity: 0.7;
}

.scroll-cue::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    translate: -50% 0;
    width: 3px;
    height: 8px;
    border-radius: 3px;
    background: var(--amber);
    animation: cue 1.8s infinite var(--ease-out);
}

@keyframes cue {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ---------- sections ---------- */

section.block { padding: 96px 0; position: relative; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }

.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 14px; }

.link-more { font-size: 14.5px; font-weight: 600; color: var(--amber); white-space: nowrap; transition: gap 0.25s; display: inline-flex; gap: 6px; }

.link-more:hover { color: #ffc35c; }

.link-more:hover .arr { transform: translateX(4px); }

.arr { transition: transform 0.3s var(--ease-out); display: inline-block; }

/* ---------- stats ---------- */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.stats-bar > div { background: var(--bg); padding: 34px 20px; text-align: center; }

.stats-bar .num { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.02em; }

.stats-bar .lbl { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-faint); margin-top: 6px; }

/* ---------- knife cards ---------- */

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 20px; }

.knife-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), border-color 0.35s, box-shadow 0.5s;
    transform-style: preserve-3d;
    will-change: transform;
}

.knife-card:hover {
    border-color: rgba(245, 165, 36, 0.45);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(245, 165, 36, 0.12);
}

.knife-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }

.knife-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }

.knife-card:hover .thumb img { transform: scale(1.06); }

.knife-card .thumb .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 99px;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line-strong);
}

.knife-card .body { padding: 18px; }

.knife-card .brand { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }

.knife-card h3 { font-size: 17.5px; font-weight: 650; margin: 5px 0 10px; letter-spacing: -0.01em; }

.knife-card .meta { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--text-dim); }

/* ---------- stars / rating ---------- */

.stars { display: inline-flex; gap: 2px; color: var(--amber); font-size: 13px; letter-spacing: 1px; }

.stars .off { color: #3c3c44; }

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 14px;
}

.rating-badge .n { color: var(--amber); font-size: 16px; }

/* ---------- panels / community ---------- */

.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.feature-list { list-style: none; display: grid; gap: 16px; margin-top: 28px; }

.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-dim); }

.feature-list .dot {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 13px;
    background: rgba(245, 165, 36, 0.12);
    color: var(--amber);
    border: 1px solid rgba(245, 165, 36, 0.25);
    margin-top: 2px;
}

.feature-list b { color: var(--text); font-weight: 650; }

.img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-card);
    position: relative;
}

.img-frame img { width: 100%; }

/* floating chat bubbles on imagery */

.float-bubble {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(18, 18, 21, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    font-size: 13.5px;
    box-shadow: var(--shadow-card);
    animation: floaty 5s ease-in-out infinite;
}

.float-bubble img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

.float-bubble:nth-child(odd) { animation-delay: -2.5s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* ---------- review cards ---------- */

.review-card { padding: 26px; display: flex; flex-direction: column; gap: 14px; height: 100%; }

.review-card .who { display: flex; align-items: center; gap: 12px; }

.review-card .who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line-strong); }

.review-card .who .name { font-weight: 650; font-size: 14.5px; }

.review-card .who .sub { font-size: 12.5px; color: var(--text-faint); }

.review-card p.quote { color: var(--text-dim); font-size: 15px; }

/* ---------- footer ---------- */

footer.site-footer { border-top: 1px solid var(--line); padding: 44px 0 56px; margin-top: 40px; }

.site-footer .inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; color: var(--text-faint); font-size: 14px; }

.site-footer nav { display: flex; gap: 24px; }

.site-footer nav a:hover { color: var(--text-dim); }

/* ---------- scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

.reveal.in { opacity: 1; transform: none; }

.reveal[data-delay='1'] { transition-delay: 0.08s; }
.reveal[data-delay='2'] { transition-delay: 0.16s; }
.reveal[data-delay='3'] { transition-delay: 0.24s; }
.reveal[data-delay='4'] { transition-delay: 0.32s; }

/* ---------- parallax banner ---------- */

.banner {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-block: 1px solid var(--line);
}

.banner .bg {
    position: absolute;
    inset: -18% 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    will-change: transform;
}

.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.92) 20%, rgba(10, 10, 12, 0.45) 65%, rgba(10, 10, 12, 0.7));
}

/* ============================================================
   KNIFE DETAIL PAGE
   ============================================================ */

.detail-hero { position: relative; padding: 150px 0 60px; overflow: hidden; }

.detail-hero .bg {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center 30%;
    z-index: -2;
    will-change: transform;
}

.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.72), rgba(10, 10, 12, 0.35) 45%, var(--bg) 96%);
}

.crumbs { font-size: 13.5px; color: var(--text-faint); display: flex; gap: 8px; margin-bottom: 26px; }

.crumbs a:hover { color: var(--amber); }

.detail-title h1 { font-size: clamp(36px, 5vw, 60px); margin: 10px 0 14px; }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.spec-grid > div { background: var(--panel); padding: 18px 20px; }

.spec-grid .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-faint); }

.spec-grid .v { font-weight: 650; margin-top: 4px; font-size: 15.5px; }

/* score bars */

.score-row { display: grid; grid-template-columns: 170px 1fr 44px; align-items: center; gap: 16px; font-size: 14.5px; }

.score-row + .score-row { margin-top: 16px; }

.score-track { height: 7px; border-radius: 99px; background: var(--panel-2); overflow: hidden; }

.score-fill {
    height: 100%;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--amber-deep), var(--amber));
    transition: width 1.2s var(--ease-out);
}

.score-row .val { text-align: right; font-weight: 700; color: var(--amber); font-variant-numeric: tabular-nums; }

/* owners strip */

.avatar-stack { display: flex; }

.avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--bg);
    margin-left: -10px;
    transition: transform 0.3s var(--ease-out);
}

.avatar-stack img:first-child { margin-left: 0; }

.avatar-stack img:hover { transform: translateY(-4px) scale(1.08); z-index: 2; position: relative; }

/* ============================================================
   THE FORGE (chat)
   ============================================================ */

.forge-layout {
    display: grid;
    grid-template-columns: 250px 1fr 230px;
    gap: 0;
    height: calc(100svh - 72px);
    margin-top: 72px;
    border-top: 1px solid var(--line);
}

.forge-side { border-right: 1px solid var(--line); padding: 22px 14px; overflow-y: auto; background: var(--bg-raised); }

.forge-side.right { border-right: 0; border-left: 1px solid var(--line); }

.side-label { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); padding: 0 10px; margin: 18px 0 8px; }

.channel {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 14.5px;
    color: var(--text-dim);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.channel:hover { background: rgba(255, 255, 255, 0.05); color: var(--text); }

.channel.active { background: rgba(245, 165, 36, 0.13); color: var(--amber); font-weight: 650; }

.channel .hash { opacity: 0.55; font-weight: 400; }

.channel .badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 800;
    background: var(--amber);
    color: #131309;
    padding: 1px 7px;
    border-radius: 99px;
}

.member { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 9px; font-size: 14px; color: var(--text-dim); }

.member img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

.member .st { width: 8px; height: 8px; border-radius: 50%; background: var(--good); margin-left: auto; box-shadow: 0 0 8px rgba(74, 222, 128, 0.7); }

.member .st.idle { background: #71717a; box-shadow: none; }

.forge-main { display: flex; flex-direction: column; min-width: 0; }

.forge-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.forge-topbar .desc { font-weight: 400; font-size: 13.5px; color: var(--text-faint); }

.chat-scroll { flex: 1; overflow-y: auto; padding: 26px 24px; display: flex; flex-direction: column; gap: 20px; }

.msg { display: flex; gap: 14px; max-width: 720px; opacity: 0; transform: translateY(14px); animation: msg-in 0.55s var(--ease-out) forwards; }

@keyframes msg-in { to { opacity: 1; transform: none; } }

.msg img.av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }

.msg .head { display: flex; align-items: baseline; gap: 10px; }

.msg .head .nm { font-weight: 700; font-size: 14.5px; }

.msg .head .tm { font-size: 12px; color: var(--text-faint); }

.msg .txt { color: #d6d6dc; font-size: 15px; margin-top: 2px; }

.msg .txt .mention { color: var(--amber); background: rgba(245, 165, 36, 0.12); padding: 1px 5px; border-radius: 5px; font-weight: 600; }

.msg .photo { margin-top: 10px; border-radius: 12px; overflow: hidden; max-width: 380px; border: 1px solid var(--line-strong); }

.msg .photo img { transition: transform 0.6s var(--ease-out); }

.msg .photo:hover img { transform: scale(1.04); }

.reactions { display: flex; gap: 6px; margin-top: 8px; }

.reaction {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    padding: 3px 9px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 99px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.reaction:hover { border-color: rgba(245, 165, 36, 0.5); transform: scale(1.06); }

.reaction.mine { border-color: rgba(245, 165, 36, 0.55); background: rgba(245, 165, 36, 0.1); }

.typing { display: flex; align-items: center; gap: 10px; color: var(--text-faint); font-size: 13.5px; padding: 0 24px 10px; }

.typing .dots { display: inline-flex; gap: 4px; }

.typing .dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-faint);
    animation: bounce 1.2s infinite;
}

.typing .dots i:nth-child(2) { animation-delay: 0.15s; }
.typing .dots i:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce { 30% { transform: translateY(-5px); opacity: 1; } }

.chat-input { display: flex; gap: 12px; padding: 16px 24px 22px; border-top: 1px solid var(--line); }

.chat-input .field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 13px 18px;
    color: var(--text-faint);
    font-size: 15px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.chat-input .field:hover { border-color: rgba(245, 165, 36, 0.4); box-shadow: 0 0 0 3px rgba(245, 165, 36, 0.08); }

/* ============================================================
   PROFILE
   ============================================================ */

.profile-cover { position: relative; height: 380px; overflow: hidden; margin-top: 72px; }

.profile-cover .bg { position: absolute; inset: -20% 0; background-size: cover; background-position: center; will-change: transform; }

.profile-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0.4), rgba(10,10,12,0.2) 50%, var(--bg)); }

.profile-head { display: flex; align-items: flex-end; gap: 26px; margin-top: -74px; position: relative; z-index: 2; flex-wrap: wrap; }

.profile-head .big-avatar {
    width: 148px;
    height: 148px;
    border-radius: 24px;
    object-fit: cover;
    border: 4px solid var(--bg);
    box-shadow: var(--shadow-card);
}

.profile-head h1 { font-size: 34px; letter-spacing: -0.02em; }

.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 99px;
    background: var(--panel);
    border: 1px solid var(--line-strong);
    transition: transform 0.3s var(--ease-out), border-color 0.25s;
    cursor: default;
}

.badge-chip:hover { transform: translateY(-3px); border-color: rgba(245, 165, 36, 0.5); }

.profile-stats { display: flex; gap: 34px; margin-left: auto; padding-bottom: 8px; }

.profile-stats .s { text-align: center; }

.profile-stats .n { font-family: var(--font-display); font-size: 27px; font-weight: 650; }

.profile-stats .l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-faint); }

.shelf-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    padding: 7px 12px;
    border-radius: 10px;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s, transform 0.35s var(--ease-out);
}

.knife-card:hover .shelf-tag { opacity: 1; transform: none; }

.add-tile {
    border: 1.5px dashed var(--line-strong);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: var(--text-faint);
    font-weight: 600;
    min-height: 260px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    cursor: pointer;
}

.add-tile:hover { border-color: rgba(245, 165, 36, 0.55); color: var(--amber); background: rgba(245, 165, 36, 0.04); }

.add-tile .plus { font-size: 34px; display: block; text-align: center; margin-bottom: 6px; }

/* activity feed */

.activity { display: grid; gap: 0; }

.activity .item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }

.activity .item:last-child { border-bottom: 0; }

.activity img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

.activity .what { font-size: 14.5px; color: var(--text-dim); }

.activity .what b { color: var(--text); font-weight: 650; }

.activity .when { margin-left: auto; font-size: 12.5px; color: var(--text-faint); white-space: nowrap; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
    .split { grid-template-columns: 1fr; gap: 36px; }
    .forge-layout { grid-template-columns: 220px 1fr; }
    .forge-side.right { display: none; }
    .main-nav { display: none; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .score-row { grid-template-columns: 130px 1fr 40px; }
}

@media (max-width: 640px) {
    .forge-layout { grid-template-columns: 1fr; }
    .forge-side { display: none; }
    .profile-stats { margin-left: 0; }
}

/* flat mode: static full-page capture (#flat) */
html.flat .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html.flat .hero { min-height: 780px; }
html.flat .msg { opacity: 1; transform: none; animation: none; }
@media (max-width: 720px) {
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* mobile: float bubbles stack below banner text instead of overlaying */
@media (max-width: 960px) {
    .banner { display: block; padding-bottom: 36px; }
    .banner .float-bubble {
        position: static;
        width: fit-content;
        max-width: calc(100% - 48px);
        margin: 12px auto 0;
        animation: none;
    }
    .banner .container > div { padding-bottom: 20px !important; }
}
