:root {
    --gb-black: #050505;
    --gb-ink: #0b0b08;
    --gb-panel: #11110e;
    --gb-panel-2: #171610;
    --gb-line: rgba(247, 244, 236, 0.14);
    --gb-line-strong: rgba(201, 168, 76, 0.42);
    --gb-gold: #c9a84c;
    --gb-gold-soft: #ecd99a;
    --gb-milk: #f7f4ec;
    --gb-muted: #b8b09e;
    --gb-danger: #d36b5d;
    --gb-ok: #8dbf85;
}

body.techhy-fullscreen-page {
    background: var(--gb-black) !important;
}

.gb-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 8%, rgba(201, 168, 76, 0.18), transparent 30%),
        linear-gradient(135deg, #050505 0%, #10100d 56%, #050505 100%);
    color: var(--gb-milk);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gb-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--gb-line);
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(18px);
}

.gb-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.gb-brand img {
    display: block;
    width: clamp(238px, 22vw, 330px);
    height: auto;
    object-fit: contain;
}

.gb-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #050505;
    background: linear-gradient(145deg, #f1d884, var(--gb-gold) 55%, #896d22);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
    font-weight: 900;
}

.gb-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gb-nav a,
.gb-btn {
    color: var(--gb-milk);
    text-decoration: none;
}

.gb-nav a {
    color: var(--gb-muted);
    font-size: 0.86rem;
}

.gb-nav a:hover {
    color: var(--gb-gold-soft);
}

.gb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--gb-gold);
    color: #090806;
    background: linear-gradient(135deg, #f2dc8c, var(--gb-gold));
    font-weight: 800;
    letter-spacing: 0.01em;
}

.gb-btn--ghost {
    background: transparent;
    color: var(--gb-gold-soft);
    border-color: var(--gb-line-strong);
}

.gb-page {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 28px clamp(18px, 4vw, 56px) 72px;
}

.gb-sidebar {
    position: sticky;
    top: 94px;
    height: fit-content;
    max-height: calc(100vh - 112px);
    overflow: auto;
    border: 1px solid var(--gb-line);
    background: rgba(13, 13, 10, 0.76);
    border-radius: 24px;
    padding: 18px;
}

.gb-sidebar__title,
.gb-menu-group span,
.gb-overline,
.gb-kicker {
    color: var(--gb-gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.72rem;
    font-weight: 800;
}

.gb-menu-group {
    display: grid;
    gap: 7px;
    margin-top: 16px;
}

.gb-menu-group a {
    display: block;
    padding: 9px 10px;
    border-radius: 12px;
    color: var(--gb-muted);
    text-decoration: none;
    font-size: 0.84rem;
    border: 1px solid transparent;
}

.gb-menu-group a:hover,
.gb-menu-group a.is-active {
    color: var(--gb-milk);
    border-color: var(--gb-line-strong);
    background: rgba(201, 168, 76, 0.08);
}

.gb-main {
    min-width: 0;
}

.gb-hero,
.gb-section {
    border: 1px solid var(--gb-line);
    background: rgba(12, 12, 9, 0.72);
    border-radius: 30px;
    padding: clamp(22px, 4vw, 44px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.gb-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: end;
}

.gb-hero h1,
.gb-section h2 {
    margin: 10px 0 14px;
    max-width: 760px;
    color: var(--gb-milk);
    font-size: clamp(2.3rem, 5vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.gb-section h2 {
    font-size: clamp(1.8rem, 3.4vw, 3.7rem);
}

.gb-hero p,
.gb-section p {
    max-width: 760px;
    color: var(--gb-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.gb-hero-card,
.gb-terminal-card {
    border: 1px solid var(--gb-line-strong);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.13), rgba(255, 255, 255, 0.03));
    border-radius: 24px;
    padding: 22px;
}

.gb-hero-card span,
.gb-hero-card small,
.gb-terminal-card span,
.gb-terminal-card small {
    color: var(--gb-muted);
    font-size: 0.82rem;
}

.gb-hero-card strong {
    display: block;
    color: var(--gb-gold-soft);
    font-size: 4rem;
    line-height: 1;
    margin: 8px 0;
}

.gb-section {
    margin-top: 24px;
}

.gb-section--poster {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 30px;
    align-items: center;
    min-height: 560px;
}

.gb-poster-copy h2 {
    font-size: clamp(2.5rem, 6vw, 6.4rem);
}

.gb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.gb-terminal-head,
.gb-terminal-grid,
.gb-market-list article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gb-terminal-head {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gb-line);
}

.gb-score {
    padding: 24px 0 14px;
}

.gb-score strong {
    display: block;
    color: var(--gb-gold-soft);
    font-size: 6rem;
    line-height: 0.9;
}

.gb-meter {
    height: 8px;
    border-radius: 999px;
    background: rgba(247, 244, 236, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.gb-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #806622, var(--gb-gold-soft));
}

.gb-terminal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gb-terminal-grid div {
    border: 1px solid var(--gb-line);
    border-radius: 16px;
    padding: 14px;
}

.gb-terminal-grid strong {
    display: block;
    color: var(--gb-milk);
    margin-top: 4px;
}

.gb-terminal-note {
    margin: 18px 0 0;
    font-size: 0.9rem !important;
}

.gb-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.gb-flow-grid article {
    min-height: 210px;
    border: 1px solid var(--gb-line);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.gb-flow-grid article span {
    color: var(--gb-gold);
    font-weight: 900;
}

.gb-flow-grid h3,
.gb-market-list strong,
.gb-disclaimer strong {
    color: var(--gb-milk);
}

.gb-flow-grid p {
    font-size: 0.9rem;
}

.gb-section--split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
    gap: 28px;
    align-items: start;
}

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

.gb-market-list article {
    border: 1px solid var(--gb-line);
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.gb-market-list span,
.gb-market-list small {
    display: block;
    color: var(--gb-muted);
    margin-top: 4px;
}

.gb-market-list em {
    display: inline-block;
    margin-top: 7px;
    color: var(--gb-ok);
    font-style: normal;
    font-weight: 800;
}

.gb-disclaimer {
    border-color: rgba(211, 107, 93, 0.32);
}

@media (max-width: 1120px) {
    .gb-page,
    .gb-hero,
    .gb-section--poster,
    .gb-section--split {
        grid-template-columns: 1fr;
    }

    .gb-sidebar {
        position: static;
        max-height: none;
    }

    .gb-nav {
        display: none;
    }

    .gb-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gb-topbar,
    .gb-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .gb-flow-grid,
    .gb-terminal-grid {
        grid-template-columns: 1fr;
    }

    .gb-section,
    .gb-hero {
        border-radius: 22px;
        padding: 20px;
    }

    .gb-btn {
        width: 100%;
    }
}

/* GBlock web app prototype surfaces */
.gb-app-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 28px;
    align-items: stretch;
    border: 1px solid var(--gb-line);
    background: radial-gradient(circle at 88% 12%, rgba(201, 168, 76, 0.16), transparent 36%), rgba(12, 12, 9, 0.82);
    border-radius: 30px;
    padding: clamp(24px, 4vw, 46px);
    overflow: hidden;
}

.gb-app-hero h1 {
    margin: 10px 0 14px;
    max-width: 800px;
    color: var(--gb-milk);
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.gb-app-hero p { max-width: 740px; color: var(--gb-muted); line-height: 1.72; }

.gb-mode-switch,
.gb-filter-bar,
.gb-interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.gb-mode-switch {
    width: fit-content;
    padding: 6px;
    border: 1px solid var(--gb-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.gb-mode-switch a,
.gb-filter-bar button,
.gb-choice {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--gb-muted);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.gb-mode-switch a.is-active,
.gb-filter-bar button.is-active,
.gb-filter-bar button:hover,
.gb-choice.is-selected,
.gb-choice:hover {
    color: var(--gb-milk);
    border-color: var(--gb-line-strong);
    background: rgba(201, 168, 76, 0.12);
}

.gb-choice { border-color: var(--gb-line); }

.gb-reputation-orb {
    position: relative;
    min-height: 250px;
    border: 1px solid var(--gb-line-strong);
    border-radius: 28px;
    padding: 26px;
    background: linear-gradient(160deg, rgba(236, 217, 154, 0.14), rgba(255, 255, 255, 0.02)), radial-gradient(circle at 50% 30%, rgba(201, 168, 76, 0.24), transparent 44%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gb-reputation-orb::before {
    content: "";
    position: absolute;
    inset: 26px;
    border: 1px dashed rgba(201, 168, 76, 0.24);
    border-radius: 50%;
    pointer-events: none;
}

.gb-reputation-orb span,
.gb-reputation-orb small { position: relative; color: var(--gb-muted); }
.gb-reputation-orb strong { position: relative; color: var(--gb-gold-soft); font-size: clamp(4rem, 8vw, 7rem); line-height: 0.9; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }

.gb-orb-meter { position: relative; height: 8px; margin-top: 18px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.gb-orb-meter i,
.gb-meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #735a17, var(--gb-gold-soft)); }

.gb-dashboard-grid,
.gb-reputation-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr); gap: 24px; margin-top: 24px; }
.gb-panel { border: 1px solid var(--gb-line); border-radius: 26px; padding: 24px; background: rgba(13,13,10,0.72); }
.gb-panel-head,
.gb-section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.gb-panel h2,
.gb-section-head h2 { margin: 6px 0 0; color: var(--gb-milk); font-size: clamp(1.4rem, 2vw, 2.1rem); letter-spacing: -0.04em; }
.gb-muted { color: var(--gb-muted); line-height: 1.65; }
.gb-status { white-space: nowrap; border: 1px solid var(--gb-line); border-radius: 999px; padding: 8px 12px; color: var(--gb-muted); font-size: 0.78rem; }
.gb-status--ok { color: var(--gb-ok); border-color: rgba(141,191,133,0.42); }

.gb-identity-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gb-identity-strip div,
.gb-cost-preview,
.gb-gated-panel { border: 1px solid var(--gb-line); border-radius: 18px; padding: 18px; background: rgba(255,255,255,0.035); }
.gb-identity-strip span,
.gb-data-table span,
.gb-data-table em { display: block; color: var(--gb-muted); font-size: 0.82rem; }
.gb-identity-strip strong { display: block; color: var(--gb-milk); margin-top: 6px; overflow-wrap: anywhere; }

.gb-app-flow,
.gb-section { animation: gb-rise 520ms ease both; }
@keyframes gb-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.gb-form { display: grid; gap: 14px; max-width: 720px; }
.gb-form--inline { max-width: none; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; align-items: end; }
.gb-form label { display: grid; gap: 8px; color: var(--gb-gold-soft); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.gb-form input,
.gb-form textarea { width: 100%; border: 1px solid var(--gb-line); border-radius: 16px; padding: 14px 16px; color: var(--gb-milk); background: rgba(0,0,0,0.28); outline: none; text-transform: none; letter-spacing: 0; }
.gb-form textarea { min-height: 116px; resize: vertical; }
.gb-form input:focus,
.gb-form textarea:focus { border-color: var(--gb-gold); }
.gb-form-result { margin: 0; color: var(--gb-ok); }

.gb-timeline,
.gb-grade-stack,
.gb-event-chart,
.gb-data-table,
.gb-block-table,
.gb-seller-grid,
.gb-queue-grid { display: grid; gap: 12px; }
.gb-timeline article { border-left: 2px solid var(--gb-gold); padding: 4px 0 4px 18px; }
.gb-timeline span,
.gb-timeline p { color: var(--gb-muted); }
.gb-timeline strong { display: block; color: var(--gb-milk); }

.gb-grade { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; border: 1px solid var(--gb-line); border-radius: 16px; padding: 14px; color: var(--gb-muted); }
.gb-grade.is-active { color: var(--gb-milk); border-color: var(--gb-line-strong); background: rgba(201,168,76,0.11); }
.gb-grade em { color: var(--gb-gold-soft); font-style: normal; }

.gb-event-chart { border: 1px solid var(--gb-line); border-radius: 22px; padding: 20px; background: rgba(0,0,0,0.2); }
.gb-event-row { display: grid; grid-template-columns: minmax(140px,1fr) minmax(120px,240px) 54px; gap: 12px; align-items: center; }
.gb-event-row span { color: var(--gb-muted); }
.gb-event-row i { height: 10px; width: var(--value); max-width: 100%; min-width: 10px; border-radius: 999px; }
.gb-event-row i.is-positive { background: linear-gradient(90deg, #4f7549, var(--gb-ok)); }
.gb-event-row i.is-negative { background: linear-gradient(90deg, #603029, var(--gb-danger)); }
.gb-event-row strong { text-align: right; color: var(--gb-milk); }

.gb-data-table,
.gb-block-table,
.gb-seller-grid,
.gb-queue-grid { margin-top: 22px; }
.gb-data-table article,
.gb-block-table article { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(180px,0.7fr) minmax(160px,0.7fr); gap: 16px; align-items: center; border: 1px solid var(--gb-line); border-radius: 18px; padding: 16px; background: rgba(255,255,255,0.035); }
.gb-block-table strong,
.gb-data-table strong { display: block; color: var(--gb-milk); }
.gb-block-table span,
.gb-block-table small,
.gb-block-table em { display: block; color: var(--gb-muted); font-style: normal; }
.gb-block-table a,
.gb-seller-card a { color: var(--gb-gold-soft); font-weight: 700; }

.gb-seller-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gb-seller-card { border: 1px solid var(--gb-line); border-radius: 22px; padding: 20px; background: rgba(255,255,255,0.035); }
.gb-seller-card--action { border-color: var(--gb-line-strong); background: rgba(201,168,76,0.08); }
.gb-seller-card span,
.gb-seller-card p { color: var(--gb-muted); }
.gb-seller-card strong { display: block; margin: 8px 0; color: var(--gb-milk); font-size: 1.18rem; }
.gb-gated-panel,
.gb-cost-preview { margin-top: 22px; }
.gb-gated-panel strong,
.gb-cost-preview strong { color: var(--gb-milk); font-size: 1.22rem; }

.gb-queue-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gb-queue-card { border: 1px solid var(--gb-line); border-radius: 22px; padding: 20px; background: rgba(255,255,255,0.035); }
.gb-queue-card strong { display: block; color: var(--gb-milk); font-size: 3rem; line-height: 1; margin: 12px 0; }
.gb-queue-card span,
.gb-queue-card p { color: var(--gb-muted); }
.gb-queue-card--gold { border-color: rgba(201,168,76,0.38); }
.gb-queue-card--blue { border-color: rgba(108,153,210,0.4); }
.gb-queue-card--red { border-color: rgba(211,107,93,0.4); }
.gb-queue-card--amber { border-color: rgba(235,174,87,0.4); }

@media (max-width: 1120px) {
    .gb-app-hero,
    .gb-dashboard-grid,
    .gb-reputation-layout,
    .gb-identity-strip,
    .gb-seller-grid,
    .gb-queue-grid,
    .gb-form--inline { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .gb-app-hero { border-radius: 22px; padding: 20px; }
    .gb-mode-switch { width: 100%; border-radius: 20px; }
    .gb-mode-switch a,
    .gb-filter-bar button,
    .gb-choice { width: 100%; text-align: center; }
    .gb-data-table article,
    .gb-block-table article,
    .gb-event-row { grid-template-columns: 1fr; }
    .gb-event-row strong { text-align: left; }
}

/* GBlock app readability hardening */
.gb-section,
.gb-panel,
.gb-app-hero {
    animation: none !important;
}

.gb-section {
    background: rgba(13, 13, 10, 0.92);
}

.gb-block-table article,
.gb-data-table article,
.gb-seller-card,
.gb-queue-card,
.gb-identity-strip div {
    background: rgba(255, 255, 255, 0.052);
}

.gb-block-table strong,
.gb-block-table a,
.gb-section-head h2,
.gb-disclaimer strong {
    color: var(--gb-milk);
}

.gb-block-table span,
.gb-block-table small,
.gb-block-table em,
.gb-disclaimer p {
    color: rgba(247, 244, 236, 0.72);
}

/* GBlock clean entry / landing */
.gb-entry-page {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(48px, 8vw, 104px) 0 clamp(64px, 10vw, 120px);
}

.gb-entry-page .gb-main {
    width: 100%;
}

.gb-entry-header-login {
    flex: 0 0 auto;
}

.gb-entry-hero {
    min-height: calc(100vh - 230px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.66fr);
    align-items: center;
    gap: clamp(32px, 6vw, 84px);
}

.gb-entry-showcase {
    display: grid;
    gap: clamp(26px, 4vw, 48px);
    min-width: 0;
}

.gb-entry-copy h1 {
    margin: 14px 0 20px;
    color: var(--gb-milk);
    font-size: clamp(4.8rem, 13vw, 12rem);
    line-height: 0.78;
    letter-spacing: -0.09em;
}

.gb-entry-copy p {
    max-width: 640px;
    margin: 0;
    color: rgba(247, 244, 236, 0.72);
    font-size: clamp(1.18rem, 2.1vw, 1.72rem);
    line-height: 1.55;
}

.gb-entry-copy .gb-entry-tagline {
    color: var(--gb-milk);
    font-size: clamp(1.45rem, 2.8vw, 2.35rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.gb-entry-copy .gb-entry-note {
    max-width: 560px;
    margin-top: 14px;
    color: rgba(247, 244, 236, 0.56);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.55;
}

.gb-entry-card {
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 30px;
    padding: clamp(22px, 3vw, 34px);
    background:
        radial-gradient(circle at 80% 0%, rgba(201, 168, 76, 0.18), transparent 38%),
        rgba(13, 13, 10, 0.86);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.gb-entry-stack {
    display: grid;
    gap: 16px;
}

.gb-cube-stage {
    position: relative;
    width: 100%;
    min-height: clamp(320px, 34vw, 520px);
    overflow: visible;
    background: radial-gradient(circle at 50% 46%, rgba(201, 168, 76, 0.14), transparent 54%);
}

.gb-cube-stage::before {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.gb-cube-stage span {
    position: absolute;
    left: 22px;
    bottom: 18px;
    color: rgba(247, 244, 236, 0.46);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    pointer-events: none;
}

.gb-cube-canvas,
.gb-cube-canvas canvas {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
}

.gb-cube-canvas {
    cursor: grab;
}

.gb-cube-canvas:active {
    cursor: grabbing;
}

.gb-entry-form {
    display: grid;
    gap: 14px;
}

.gb-entry-form label {
    color: var(--gb-gold-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gb-entry-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.gb-entry-input-row input {
    min-width: 0;
    border: 1px solid var(--gb-line);
    border-radius: 999px;
    padding: 15px 18px;
    color: var(--gb-milk);
    background: rgba(0, 0, 0, 0.34);
    outline: none;
}

.gb-entry-input-row input:focus {
    border-color: var(--gb-gold);
}

.gb-entry-form p {
    margin: 0;
    color: var(--gb-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.gb-entry-access-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.gb-entry-access-card span {
    display: block;
    color: var(--gb-gold-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gb-entry-access-card p {
    margin: 10px 0 16px;
    color: var(--gb-muted);
    line-height: 1.6;
}

.gb-entry-request {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
}

.gb-entry-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gb-entry-features article {
    border: 1px solid var(--gb-line);
    border-radius: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.gb-entry-features span {
    color: var(--gb-gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.gb-entry-features h2 {
    margin: 14px 0 10px;
    color: var(--gb-milk);
    font-size: 1.15rem;
}

.gb-entry-features p {
    margin: 0;
    color: var(--gb-muted);
    line-height: 1.6;
}

.gb-entry-faq {
    margin-top: 18px;
    border: 1px solid var(--gb-line);
    border-radius: 28px;
    padding: clamp(22px, 3vw, 34px);
    background:
        radial-gradient(circle at 92% 0%, rgba(201, 168, 76, 0.12), transparent 36%),
        rgba(255, 255, 255, 0.028);
}

.gb-entry-faq .gb-section-head {
    margin-bottom: 18px;
}

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

.gb-faq-list details {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 0;
    background: rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.gb-faq-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--gb-milk);
    font-weight: 800;
}

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

.gb-faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 168, 76, 0.38);
    border-radius: 999px;
    color: var(--gb-gold-soft);
}

.gb-faq-list details[open] summary::after {
    content: "−";
}

.gb-faq-list p {
    margin: -4px 20px 18px;
    color: var(--gb-muted);
    line-height: 1.65;
}

@media (max-width: 860px) {
    .gb-entry-hero,
    .gb-entry-features {
        grid-template-columns: 1fr;
    }

    .gb-entry-hero {
        min-height: auto;
        gap: 20px;
    }

    .gb-entry-stack,
    .gb-entry-features,
    .gb-faq-list {
        gap: 14px;
    }

    .gb-entry-features,
    .gb-entry-faq {
        margin-top: 14px;
    }

    .gb-entry-input-row {
        grid-template-columns: 1fr;
    }

    .gb-entry-showcase {
        gap: 18px;
    }

    .gb-cube-stage {
        min-height: clamp(300px, 72vw, 430px);
    }

    .gb-entry-header-login {
        width: auto;
        min-height: 38px;
        padding: 0 15px;
    }
}

