:root {
    --bg: #f4f6f8;
    --surface: #ffffff;
    --surface-soft: #fbfcfd;
    --surface-strong: #fff4eb;
    --text: #172033;
    --muted: #667085;
    --muted-strong: #475467;
    --line: #e7edf3;
    --brand: #ff7a00;
    --brand-strong: #ef6a00;
    --brand-soft: #fff2e8;
    --success: #12a150;
    --success-soft: #edf9f1;
    --info: #2563eb;
    --info-soft: #eef4ff;
    --warning: #b76a00;
    --warning-soft: #fff6e6;
    --danger: #d14343;
    --danger-soft: #fff0f0;
    --shadow-sm: 0 8px 20px rgba(23, 32, 51, 0.05);
    --shadow-md: 0 14px 32px rgba(23, 32, 51, 0.08);
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

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

html,
body {
    min-height: 100%;
    background: var(--bg);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

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

.mobile-frame {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-shell {
    min-height: 100vh;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

.page-stack {
    display: grid;
    gap: 16px;
    padding: 16px 0 24px;
}

.app-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(244, 246, 248, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231, 237, 243, 0.9);
}

.topbar-inner {
    display: grid;
    grid-template-columns: 72px 1fr 72px;
    align-items: center;
    min-height: 56px;
}

.topbar-side {
    display: flex;
    align-items: center;
}

.topbar-right {
    justify-content: flex-end;
}

.topbar-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-strong);
}

.topbar-back::before {
    content: "‹";
    font-size: 20px;
    line-height: 1;
}

.topbar-title {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.topbar-spacer {
    display: block;
    width: 20px;
    height: 1px;
}

.card {
    background: var(--surface);
    border: 1px solid rgba(231, 237, 243, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 18px;
}

.surface-soft {
    background: var(--surface-soft);
}

.surface-brand {
    background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
}

.hero-card {
    padding: 22px 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 153, 72, 0.22), transparent 36%),
        radial-gradient(circle at bottom left, rgba(24, 39, 75, 0.14), transparent 34%),
        linear-gradient(135deg, #1e293b 0%, #24364d 52%, #ff8a1c 130%);
    color: #fff;
}

.hero-title {
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.brand-hero {
    overflow: hidden;
}

.brand-hero-inner {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    align-items: center;
}

.brand-mark {
    position: relative;
    width: 88px;
    height: 104px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.brand-mark::before {
    width: 44px;
    height: 44px;
    top: 12px;
    right: -8px;
}

.brand-mark::after {
    width: 22px;
    height: 22px;
    left: -6px;
    bottom: 14px;
}

.brand-mark span {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: grid;
    gap: 10px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 700;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 17px;
    font-weight: 700;
}

.section-desc {
    font-size: 12px;
    color: var(--muted);
}

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

.muted-strong {
    color: var(--muted-strong);
}

.text-brand {
    color: var(--brand-strong);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.text-right {
    text-align: right;
}

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

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

.metric-card {
    min-width: 0;
    padding: 16px 14px;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.metric-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}

.metric-value {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.metric-note {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
}

.commission-highlight {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff7ef 0%, #fffdf9 100%);
    border: 1px solid rgba(255, 122, 0, 0.16);
    font-size: 13px;
    color: var(--muted-strong);
}

.commission-highlight strong,
.commission-highlight span {
    color: var(--brand-strong);
}

.commission-steps {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.commission-step {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.commission-step-title {
    font-size: 14px;
    font-weight: 700;
}

.commission-step-desc {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.tier-card .notice {
    margin-top: 14px;
}

.tier-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff8f0 0%, #fffdf9 100%);
    border: 1px solid rgba(255, 122, 0, 0.14);
}

.tier-summary-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-strong);
}

.tier-summary-amount {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: var(--brand-strong);
}

.tier-grid {
    display: grid;
    gap: 10px;
}

.tier-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.tier-item-primary {
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
}

.tier-item-secondary {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.tier-item-tertiary {
    background: linear-gradient(180deg, #f9f8ff 0%, #ffffff 100%);
}

.tier-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 10px 18px rgba(23, 32, 51, 0.12);
}

.tier-item-primary .tier-icon {
    background: linear-gradient(180deg, #ff9d3b 0%, #ff7a00 100%);
}

.tier-item-secondary .tier-icon {
    background: linear-gradient(180deg, #5d8dff 0%, #2563eb 100%);
}

.tier-item-tertiary .tier-icon {
    background: linear-gradient(180deg, #8d74ff 0%, #6941c6 100%);
}

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

.tier-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}

.tier-desc {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.tier-side {
    text-align: right;
}

.tier-amount {
    font-size: 19px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--brand-strong);
}

.tier-ratio {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.tier-link {
    position: relative;
    margin-left: 25px;
    padding-left: 22px;
    font-size: 12px;
    color: var(--muted-strong);
    font-weight: 600;
}

.tier-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(45deg);
}

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

.action-card {
    display: block;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.action-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.action-desc {
    font-size: 12px;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #ff8b1a 0%, #ff7a00 100%);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.24);
}

.btn-secondary {
    color: var(--brand-strong);
    background: var(--brand-soft);
}

.btn-muted {
    color: var(--muted-strong);
    background: #eef2f6;
}

.btn-danger {
    color: var(--danger);
    background: var(--danger-soft);
}

.inline-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.pill-info {
    background: var(--info-soft);
    color: var(--info);
}

.pill-success {
    background: var(--success-soft);
    color: var(--success);
}

.pill-warning {
    background: var(--warning-soft);
    color: var(--warning);
}

.pill-danger {
    background: var(--danger-soft);
    color: var(--danger);
}

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

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.info-label {
    flex: 0 0 auto;
    font-size: 13px;
    color: var(--muted);
}

.info-value {
    flex: 1;
    text-align: right;
    font-size: 14px;
    color: var(--text);
}

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

.job-card {
    display: block;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(231, 237, 243, 0.9);
    box-shadow: var(--shadow-sm);
}

.job-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.job-location {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.job-platform {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.amount-badge {
    flex: 0 0 auto;
    min-width: 92px;
    padding: 8px 10px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand-strong);
    text-align: right;
}

.amount-badge small {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

.amount-badge strong {
    display: block;
    margin-top: 2px;
    font-size: 18px;
    line-height: 1.1;
}

.job-meta {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.job-snippet {
    font-size: 13px;
    color: var(--muted-strong);
    line-height: 1.55;
}

.earn-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.earn-item {
    padding: 10px 8px;
    border-radius: 14px;
    background: var(--surface-soft);
    text-align: center;
}

.earn-item span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}

.earn-item strong {
    font-size: 16px;
    line-height: 1.1;
    color: var(--brand-strong);
}

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

.panel-item {
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(231, 237, 243, 0.9);
    box-shadow: var(--shadow-sm);
}

.panel-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.panel-item-title {
    font-size: 15px;
    font-weight: 700;
}

.panel-item-meta {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: var(--muted-strong);
}

.notice {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 13px;
}

.notice-info {
    background: var(--info-soft);
    color: var(--info);
}

.notice-warning {
    background: var(--warning-soft);
    color: var(--warning);
}

.notice-success {
    background: var(--success-soft);
    color: var(--success);
}

.empty-state {
    padding: 28px 20px;
    text-align: center;
}

.empty-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.empty-desc {
    font-size: 13px;
    color: var(--muted);
}

.form-card {
    padding: 18px;
}

.field {
    margin-bottom: 16px;
}

.field:last-child {
    margin-bottom: 0;
}

.field-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.field-tip {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.input,
.select,
.textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8e0ea;
    border-radius: 14px;
    background: #fff;
    color: var(--text);
}

.textarea {
    min-height: 108px;
    resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    border-color: #ffb06b;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.radio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 1px solid #d8e0ea;
    border-radius: 14px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.radio-card input {
    width: auto;
}

.sticky-submit {
    position: sticky;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    z-index: 12;
}

.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 24px 0;
}

.auth-card {
    overflow: hidden;
}

.auth-brand {
    padding: 24px 20px 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%),
        linear-gradient(135deg, #ff8b1a 0%, #ff7a00 100%);
    color: #fff;
}

.auth-brand h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.auth-brand p {
    font-size: 13px;
    opacity: 0.92;
}

.auth-body {
    padding: 20px 18px 18px;
}

.auth-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}

.auth-footer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.auth-footer a {
    color: var(--brand-strong);
    font-weight: 700;
}

.filter-bar {
    display: grid;
    gap: 10px;
}

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

.compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.compact-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f0f4f8;
    font-size: 12px;
    color: var(--muted-strong);
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 14px 0;
}

.wallet-card {
    padding: 20px 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #293345 0%, #1d2433 100%);
    color: #fff;
}

.wallet-card .metric-label,
.wallet-card .metric-note {
    color: rgba(255, 255, 255, 0.78);
}

.wallet-card .metric-value {
    color: #fff;
}

.metrics-grid.metrics-grid-3 .metric-card {
    padding: 14px 12px;
}

.metrics-grid.metrics-grid-3 .metric-value {
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.metrics-grid.metrics-grid-3 .metric-label,
.metrics-grid.metrics-grid-3 .metric-note {
    font-size: 11px;
}

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

.list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid rgba(231, 237, 243, 0.9);
    box-shadow: var(--shadow-sm);
}

.list-link-title {
    font-size: 15px;
    font-weight: 700;
}

.list-link-desc {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.list-link-arrow {
    color: var(--muted);
    font-size: 18px;
}

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

.record-item {
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(231, 237, 243, 0.9);
    box-shadow: var(--shadow-sm);
}

.record-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.record-title {
    font-size: 15px;
    font-weight: 700;
}

.record-time {
    margin-top: 5px;
    font-size: 12px;
    color: var(--muted);
}

.record-amount {
    text-align: right;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.record-sub {
    margin-top: 12px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: var(--muted-strong);
}

.ticker-shell {
    padding: 4px 0 0;
}

.ticker-window {
    overflow: hidden;
}

.ticker-track {
    display: grid;
    gap: 8px;
    will-change: transform;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 56px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fafcff 0%, #ffffff 100%);
    border: 1px solid rgba(220, 228, 237, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.ticker-user {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}

.ticker-desc {
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted);
}

.ticker-side {
    flex: 0 0 auto;
    text-align: right;
}

.ticker-amount {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--success);
}

.ticker-amount.is-recommend {
    color: var(--brand-strong);
}

.ticker-time {
    margin-top: 5px;
    font-size: 12px;
    color: var(--muted);
}

.support-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 6px;
}

.share-box {
    display: grid;
    gap: 10px;
}

.share-url {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
    color: var(--muted-strong);
}

.modal-mask {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: flex-end;
    background: rgba(23, 32, 51, 0.52);
}

.modal-mask.is-open {
    display: flex;
}

.modal-sheet {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px));
}

.modal-card {
    border-radius: 24px 24px 18px 18px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.sheet-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 18px 18px 0;
}

.sheet-title {
    font-size: 18px;
    font-weight: 800;
}

.sheet-close {
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
}

.poster-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(23, 32, 51, 0.74);
    padding: 20px;
}

.poster-modal.is-open {
    display: flex;
}

.poster-modal-card {
    width: 100%;
    max-width: 420px;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
}

.poster-modal-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination .btn {
    min-width: 44px;
    min-height: 40px;
    padding: 0 14px;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(231, 237, 243, 0.95);
}

.bottom-nav-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 62px;
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.bottom-nav-item.is-active {
    color: var(--brand-strong);
}

.bottom-nav-label {
    position: relative;
}

.bottom-nav-item.is-active .bottom-nav-label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
    transform: translateX(-50%);
}

@media (max-width: 360px) {
    .mobile-frame {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .brand-hero-inner {
        grid-template-columns: 76px 1fr;
        gap: 12px;
    }

    .brand-mark {
        width: 76px;
        height: 92px;
    }

    .brand-mark span {
        font-size: 26px;
    }

    .metric-value {
        font-size: 21px;
    }

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

    .job-card-head {
        flex-direction: column;
    }

    .amount-badge {
        width: 100%;
        text-align: left;
    }
}
