:root {
  color-scheme: light;
  --gb-ink: #07111f;
  --gb-muted: #647184;
  --gb-soft: #f7f9fc;
  --gb-panel: #ffffff;
  --gb-line: #e6edf5;
  --gb-red: #e11d48;
  --gb-green: #0f9f7a;
  --gb-teal: #00b8c7;
  --gb-cyan: #12f0e8;
  --gb-pink: #ff2d6f;
  --gb-gold: #b7791f;
  --gb-coral: #f04d77;
  --gb-blue: #2563eb;
  --gb-shadow: 0 18px 46px rgba(7, 17, 31, 0.11);
  --gb-shadow-strong: 0 22px 54px rgba(7, 17, 31, 0.18);
  --gb-radius: 8px;
  --gb-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--gb-ink);
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.06) 0%, rgba(247, 249, 252, 0) 180px),
    linear-gradient(180deg, #fbfcff 0%, #f3f6fb 58%, #f8fafc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

.gb-app {
  min-height: 100vh;
}

.gb-shell {
  min-height: 100vh;
  padding: env(safe-area-inset-top, 0px) 0 var(--gb-bottom);
}

.gb-shell.is-public {
  padding-bottom: calc(34px + env(safe-area-inset-bottom, 0px));
}

.gb-main {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 14px 34px;
}

.gb-boot {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100vh;
  padding: 28px;
}

.gb-boot-mark,
.gb-brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #050812;
  box-shadow: 0 16px 34px rgba(5, 8, 18, 0.24);
}

.gb-boot-mark img,
.gb-brand-mark img,
.gb-state-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-boot-title {
  font-size: 24px;
  font-weight: 900;
}

.gb-boot-subtitle {
  margin-top: 4px;
  color: var(--gb-muted);
  font-size: 14px;
}

.gb-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(223, 229, 238, 0.84);
  background: rgba(251, 252, 255, 0.92);
  backdrop-filter: blur(18px);
}

.gb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 14px;
}

.gb-brand {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  gap: 10px;
  padding: 0;
  text-align: left;
}

.gb-brand > span:last-child {
  min-width: 0;
}

.gb-brand-mark {
  width: 38px;
  height: 38px;
}

.gb-brand-title {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.gb-brand-subtitle {
  max-width: 210px;
  overflow: hidden;
  color: var(--gb-muted);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gb-header-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  color: var(--gb-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.gb-role-controls {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.gb-role-badge,
.gb-role-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.gb-role-badge {
  max-width: 132px;
  overflow: hidden;
  padding: 0 9px;
  color: #075c66;
  background: rgba(18, 240, 232, 0.13);
  text-overflow: ellipsis;
}

.gb-role-switch {
  border: 0;
  padding: 0 4px;
  color: var(--gb-teal);
  background: transparent;
}

.gb-hero {
  padding: 18px 0 14px;
}

.gb-eyebrow {
  color: var(--gb-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gb-title {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
}

.gb-subtitle {
  margin: 8px 0 0;
  color: var(--gb-muted);
  font-size: 14px;
  line-height: 1.55;
}

.gb-auth-card,
.gb-panel,
.gb-job-card,
.gb-application-card,
.gb-chat-row,
.gb-profile-card {
  border: 1px solid rgba(223, 229, 238, 0.92);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.07);
}

.gb-auth-card,
.gb-panel,
.gb-profile-card {
  padding: 16px;
}

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

.gb-grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

.gb-field {
  display: grid;
  gap: 6px;
}

.gb-label {
  color: var(--gb-ink);
  font-size: 13px;
  font-weight: 850;
}

.gb-input,
.gb-select,
.gb-textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  color: var(--gb-ink);
  background: #fff;
  outline: none;
  padding: 11px 12px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

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

.gb-select-multiple {
  min-height: 156px;
  padding: 8px;
}

.gb-select-multiple option {
  border-radius: 8px;
  padding: 8px 10px;
  white-space: normal;
}

.gb-input:focus,
.gb-select:focus,
.gb-textarea:focus {
  border-color: rgba(15, 118, 110, 0.74);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.gb-input:disabled,
.gb-textarea:disabled {
  color: #8792a3;
  background: #f3f6f9;
  cursor: not-allowed;
}

.gb-button-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.gb-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #172033 0%, #0f766e 100%);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
}

.gb-btn-coral {
  color: #fff;
  background: linear-gradient(135deg, #c84735 0%, #e05d47 100%);
  box-shadow: 0 10px 22px rgba(224, 93, 71, 0.2);
}

.gb-btn-secondary {
  color: var(--gb-ink);
  border-color: var(--gb-line);
  background: #fff;
}

.gb-btn-ghost {
  color: var(--gb-teal);
  background: transparent;
}

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

.gb-btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.gb-btn:not(:disabled):active {
  transform: translateY(1px);
}

.gb-link {
  border: 0;
  color: var(--gb-teal);
  background: transparent;
  font-weight: 850;
  padding: 0;
  text-decoration: none;
}

.gb-search-row,
.gb-filter-row {
  display: grid;
  gap: 10px;
}

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

.gb-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gb-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 100%;
  padding: 0 10px;
  border: 1px solid #d7efe8;
  border-radius: 999px;
  color: #0f5f52;
  background: #eefaf6;
  font-size: 12px;
  font-weight: 850;
}

.gb-chip-gold {
  border-color: #f1dfa8;
  color: #855b12;
  background: #fff8df;
}

.gb-chip-coral {
  border-color: #f7c9bf;
  color: #a83d2d;
  background: #fff0ec;
}

.gb-chip-muted {
  border-color: var(--gb-line);
  color: var(--gb-muted);
  background: #f7f9fc;
}

.gb-discovery-panel {
  padding: 14px;
}

.gb-search-field {
  position: relative;
}

.gb-search-field .gb-input {
  min-height: 50px;
  padding-left: 42px;
  font-weight: 760;
}

.gb-search-icon {
  position: absolute;
  left: 14px;
  bottom: 13px;
  z-index: 1;
  color: var(--gb-teal);
  font-size: 18px;
  font-weight: 950;
}

.gb-funnel-section {
  display: grid;
  gap: 10px;
}

.gb-funnel-title {
  color: var(--gb-ink);
  font-size: 14px;
  font-weight: 920;
}

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

.gb-industry-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(18, 240, 232, 0.22);
  border-radius: 8px;
  padding: 9px 10px;
  color: #075c66;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 8px 18px rgba(7, 17, 31, 0.05);
}

.gb-industry-card.is-active {
  border-color: rgba(255, 45, 111, 0.42);
  color: #ffffff;
  background: linear-gradient(135deg, #050812 0%, #087f90 58%, #ff2d6f 100%);
  box-shadow: 0 12px 26px rgba(8, 127, 144, 0.2);
}

.gb-industry-toggle {
  justify-self: start;
  min-height: 36px;
  border: 0;
  padding: 0;
  color: var(--gb-teal);
  background: transparent;
  font-size: 13px;
  font-weight: 920;
}

.gb-active-filters {
  align-items: center;
}

.gb-chip-removable {
  gap: 7px;
  cursor: pointer;
}

.gb-chip-removable span:last-child {
  opacity: 0.62;
  font-size: 14px;
  line-height: 1;
}

.gb-advanced-filter {
  border-top: 1px solid rgba(230, 237, 245, 0.9);
  padding-top: 10px;
}

.gb-advanced-filter summary {
  min-height: 38px;
  color: var(--gb-ink);
  font-size: 13px;
  font-weight: 920;
  cursor: pointer;
}

.gb-advanced-filter-body {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.gb-job-section {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.gb-job-section-compact {
  gap: 10px;
}

.gb-quick-job-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 1px 1px 8px;
  margin: 0 -1px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gb-quick-job-row::-webkit-scrollbar {
  display: none;
}

.gb-quick-job-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  flex: 0 0 min(86vw, 330px);
  align-items: center;
  gap: 10px;
  min-height: 92px;
  border: 1px solid rgba(230, 237, 245, 0.96);
  border-radius: 8px;
  padding: 9px;
  color: inherit;
  background: rgba(255, 255, 255, 0.96);
  text-align: left;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.07);
}

.gb-quick-job-thumb {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border-radius: 8px;
  background: #050812;
}

.gb-quick-job-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-quick-job-thumb.is-empty img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.gb-quick-job-body {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.gb-quick-job-body strong,
.gb-quick-job-body span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-quick-job-body strong {
  display: -webkit-box;
  color: var(--gb-ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 920;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gb-quick-job-body span {
  color: var(--gb-muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

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

.gb-job-card,
.gb-application-card,
.gb-chat-row {
  padding: 14px;
}

.gb-job-image,
.gb-campaign-hero-image,
.gb-campaign-image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(224, 93, 71, 0.14)),
    #edf4f3;
}

.gb-job-image {
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}

.gb-job-image img,
.gb-campaign-hero-image img,
.gb-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-campaign-image-placeholder {
  min-height: 100%;
  gap: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
}

.gb-placeholder-logo {
  display: block;
  width: clamp(54px, 18vw, 82px);
  height: clamp(54px, 18vw, 82px);
  border: 1px solid rgba(18, 240, 232, 0.2);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(5, 8, 18, 0.24);
  object-fit: cover;
}

.gb-job-image .gb-placeholder-logo,
.gb-campaign-hero-image .gb-placeholder-logo,
.gb-application-thumb .gb-placeholder-logo {
  width: clamp(54px, 18vw, 82px);
  height: clamp(54px, 18vw, 82px);
  object-fit: cover;
}

.gb-campaign-image-placeholder span {
  max-width: 180px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(5, 8, 18, 0.36);
}

.gb-job-badges {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gb-job-badges span {
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 32, 51, 0.82);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.gb-job-summary,
.gb-campaign-detail-copy {
  margin: 10px 0 0;
  color: var(--gb-muted);
  font-size: 14px;
  line-height: 1.62;
  white-space: pre-line;
}

.gb-job-top,
.gb-card-top,
.gb-chat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.gb-job-title,
.gb-card-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 950;
}

.gb-card-sub {
  margin-top: 5px;
  color: var(--gb-muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.gb-meta {
  min-height: 52px;
  padding: 9px;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fbfcfe;
}

.gb-meta-label {
  color: var(--gb-muted);
  font-size: 11px;
  font-weight: 750;
}

.gb-meta-value {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gb-section-title {
  margin: 18px 0 10px;
  font-size: 16px;
  font-weight: 950;
}

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

.gb-campaign-hero {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.gb-campaign-hero-image {
  aspect-ratio: 16 / 10;
  min-height: 220px;
  box-shadow: var(--gb-shadow);
}

.gb-campaign-hero-copy {
  padding: 16px 0 0;
}

.gb-campaign-hero-copy h1 {
  margin: 6px 0 8px;
  color: var(--gb-ink);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
}

.gb-campaign-hero-copy p {
  margin: 0 0 14px;
  color: var(--gb-muted);
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  max-width: 62ch;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gb-gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.gb-gallery-strip figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  background: #fff;
}

.gb-gallery-strip img {
  display: block;
  aspect-ratio: 4 / 3;
}

.gb-gallery-strip figcaption {
  padding: 8px;
  color: var(--gb-muted);
  font-size: 12px;
  font-weight: 800;
}

.gb-rich-section {
  margin-top: 12px;
}

.gb-text-section .gb-campaign-detail-copy {
  margin-top: 12px;
  color: #334155;
  font-size: 15px;
  line-height: 1.72;
}

.gb-rich-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.gb-rich-list li {
  padding: 10px 12px;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--gb-ink);
  font-size: 14px;
  line-height: 1.45;
}

.gb-do-dont {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.gb-do-dont strong {
  display: block;
  color: var(--gb-ink);
  font-size: 13px;
}

.gb-sticky-cta {
  position: sticky;
  bottom: calc(var(--gb-bottom) + 10px);
  z-index: 12;
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(223, 229, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--gb-shadow);
  backdrop-filter: blur(16px);
}

.gb-sticky-cta .gb-btn {
  flex: 1 1 160px;
}

.gb-shell.is-public .gb-sticky-cta {
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.gb-btn.gb-btn-compact {
  flex: 0 0 auto;
  min-width: 108px;
}

.gb-btn.gb-btn-icon {
  flex: 0 0 52px;
  width: 52px;
  min-width: 52px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

.gb-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 26px 18px;
  border: 1px solid rgba(223, 229, 238, 0.92);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.gb-state-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  color: #0f5f52;
  background: #e8f7f2;
  font-weight: 950;
}

.gb-state-title {
  font-size: 17px;
  font-weight: 950;
}

.gb-state-copy {
  max-width: 330px;
  margin-top: 8px;
  color: var(--gb-muted);
  font-size: 14px;
  line-height: 1.55;
}

.gb-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #d8e6e2;
  border-top-color: var(--gb-teal);
  border-radius: 50%;
  animation: gb-spin 0.8s linear infinite;
}

@keyframes gb-spin {
  to {
    transform: rotate(360deg);
  }
}

.gb-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  background: #fff;
  scrollbar-width: none;
}

.gb-tabs::-webkit-scrollbar {
  display: none;
}

.gb-tab-btn {
  flex: 0 0 auto;
  min-height: 36px;
  border: 0;
  border-radius: 7px;
  color: var(--gb-muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  padding: 0 11px;
  white-space: nowrap;
}

.gb-tab-btn.is-active {
  color: #fff;
  background: var(--gb-ink);
}

.gb-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid rgba(223, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  padding: 7px 10px calc(7px + env(safe-area-inset-bottom, 0px));
}

.gb-bottom-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  max-width: 760px;
  margin: 0 auto;
}

.gb-nav-item {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #6b7280;
  background: transparent;
  text-decoration: none;
}

.gb-nav-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #eef2f6;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.gb-nav-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.gb-nav-item.is-active {
  color: #0f5f52;
  background: #ecf8f4;
}

.gb-nav-item.is-active .gb-nav-icon {
  color: #fff;
  background: var(--gb-teal);
}

.gb-toast-root {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--gb-bottom) + 8px);
  z-index: 80;
  pointer-events: none;
}

.gb-toast {
  max-width: 520px;
  margin: 0 auto 8px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(23, 32, 51, 0.96);
  box-shadow: var(--gb-shadow);
  font-size: 13px;
  font-weight: 800;
}

.gb-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  align-items: end;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(23, 32, 51, 0.38);
}

.gb-modal {
  width: 100%;
  max-width: 760px;
  max-height: min(86vh, 720px);
  overflow-y: auto;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  background: #fff;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  box-shadow: var(--gb-shadow);
}

.gb-chat-messages {
  display: grid;
  gap: 10px;
  min-height: 300px;
}

.gb-chat-messages .gb-state {
  min-height: 260px;
}

.gb-message {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef2f6;
}

.gb-message.me {
  justify-self: end;
  color: #fff;
  background: var(--gb-teal);
}

.gb-message-name {
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 900;
  opacity: 0.8;
}

.gb-message-body {
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.gb-message-time {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  opacity: 0.64;
}

.gb-chat-composer {
  display: grid;
  gap: 10px;
}

.gb-chat-send-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gb-chat-send-row .gb-btn {
  min-width: 96px;
}

.gb-form-hint {
  color: var(--gb-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.gb-profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gb-profile-hint {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(224, 93, 71, 0.22);
  border-radius: 8px;
  background: rgba(255, 247, 237, 0.82);
}

.gb-profile-hint.is-complete {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(240, 253, 250, 0.86);
}

.gb-profile-hint strong {
  color: var(--gb-ink);
  font-size: 13px;
  line-height: 1.25;
}

.gb-profile-hint span {
  color: var(--gb-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.gb-workspace {
  margin-top: 12px;
}

.gb-work-checklist {
  display: grid;
  gap: 8px;
}

.gb-work-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fbfcfe;
}

.gb-work-check span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gb-line);
  border-radius: 50%;
  color: transparent;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.gb-work-check strong {
  color: var(--gb-ink);
  font-size: 13px;
  line-height: 1.3;
}

.gb-work-check.is-done {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(240, 253, 250, 0.84);
}

.gb-work-check.is-done span {
  border-color: var(--gb-teal);
  color: #fff;
  background: var(--gb-teal);
}

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

.gb-deliverable-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fbfcfe;
}

.gb-proof-link {
  color: var(--gb-teal);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.gb-proof-link:hover {
  text-decoration: underline;
}

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

.gb-sample-panel .gb-btn-full {
  margin-top: 2px;
}

.gb-state-compact {
  min-height: 132px;
}

.gb-avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #e05d47);
  font-size: 20px;
  font-weight: 950;
}

.gb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-hide {
  display: none !important;
}

@media (min-width: 520px) {
  .gb-filter-row,
  .gb-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .gb-shell {
    padding-bottom: 32px;
  }

  .gb-main {
    padding: 22px 18px 44px;
  }

  .gb-title {
    font-size: 34px;
  }

  .gb-bottom-nav {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(560px, calc(100vw - 36px));
    transform: translateX(-50%);
    border: 1px solid rgba(223, 229, 238, 0.9);
    border-radius: 8px;
    box-shadow: var(--gb-shadow);
    padding: 8px;
  }

  .gb-modal-backdrop {
    align-items: center;
    padding: 20px;
  }

  .gb-modal {
    border-radius: 8px;
  }
}

.gb-shell {
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.04) 0%, rgba(247, 249, 252, 0) 160px),
    #f7f9fc;
}

.gb-main {
  padding-top: 12px;
}

.gb-topbar {
  border-bottom-color: rgba(230, 237, 245, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(7, 17, 31, 0.05);
}

.gb-topbar-inner {
  min-height: 64px;
}

.gb-brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 240, 232, 0.18);
  box-shadow: 0 12px 28px rgba(5, 8, 18, 0.18);
}

.gb-brand-title {
  font-size: 18px;
  letter-spacing: 0;
}

.gb-brand-subtitle {
  max-width: min(270px, 58vw);
  color: #6b7788;
  font-size: 12px;
}

.gb-header-action {
  min-width: 44px;
  min-height: 44px;
  border-color: rgba(7, 17, 31, 0.08);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: 0 8px 22px rgba(7, 17, 31, 0.08);
}

.gb-hero {
  padding: 18px 0 16px;
}

.gb-eyebrow,
.gb-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(18, 240, 232, 0.18);
  border-radius: 999px;
  color: #067b86;
  background: rgba(18, 240, 232, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.gb-title {
  max-width: 11em;
  font-size: 30px;
  letter-spacing: 0;
}

.gb-subtitle {
  max-width: 620px;
  color: #5e6b7c;
}

.gb-auth-card,
.gb-panel,
.gb-job-card,
.gb-application-card,
.gb-chat-row,
.gb-profile-card,
.gb-state {
  border-color: rgba(230, 237, 245, 0.98);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.07);
}

.gb-auth-card,
.gb-panel,
.gb-profile-card {
  padding: 18px;
}

.gb-auth-card {
  overflow: hidden;
  border-color: rgba(18, 240, 232, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 240, 232, 0.05), rgba(255, 45, 111, 0.035)),
    #ffffff;
}

.gb-auth-hero {
  padding-top: 8px;
}

.gb-auth-logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(18, 240, 232, 0.18);
  border-radius: 8px;
  background: #050812;
  box-shadow: 0 18px 38px rgba(5, 8, 18, 0.22);
}

.gb-auth-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-input,
.gb-select,
.gb-textarea {
  min-height: 48px;
  border-color: #dce6f1;
  background: #fbfdff;
  font-size: 15px;
}

.gb-input:focus,
.gb-select:focus,
.gb-textarea:focus {
  border-color: rgba(18, 240, 232, 0.78);
  box-shadow: 0 0 0 4px rgba(18, 240, 232, 0.16);
}

.gb-btn {
  min-height: 46px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
}

.gb-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #050812 0%, #087f90 62%, #12f0e8 100%);
  box-shadow: 0 14px 28px rgba(0, 184, 199, 0.22);
}

.gb-btn-coral {
  background: linear-gradient(135deg, #050812 0%, #ff2d6f 100%);
  box-shadow: 0 14px 28px rgba(255, 45, 111, 0.2);
}

.gb-btn-secondary {
  border-color: #dce6f1;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.gb-btn-ghost,
.gb-link {
  color: #087f90;
}

.gb-chip {
  min-height: 30px;
  border-color: rgba(18, 240, 232, 0.22);
  color: #05727a;
  background: rgba(18, 240, 232, 0.09);
}

.gb-chip-gold {
  border-color: #f4dea1;
  color: #815912;
  background: #fff8df;
}

.gb-chip-coral {
  border-color: rgba(255, 45, 111, 0.2);
  color: #b21d4d;
  background: rgba(255, 45, 111, 0.08);
}

.gb-chip-muted {
  border-color: #e1e9f2;
  color: #5e6b7c;
  background: #f6f9fd;
}

.gb-search-row,
.gb-filter-row {
  gap: 12px;
}

.gb-job-card {
  overflow: hidden;
  padding: 0;
}

.gb-job-card > :not(.gb-job-image) {
  margin-left: 15px;
  margin-right: 15px;
}

.gb-job-card > .gb-button-row:last-child {
  margin-bottom: 15px;
}

.gb-job-image {
  margin: 0 0 14px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(5, 8, 18, 0.88), rgba(8, 127, 144, 0.72)),
    #050812;
}

.gb-campaign-image-placeholder {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 8, 18, 0.98), rgba(18, 240, 232, 0.18), rgba(255, 45, 111, 0.18)),
    #050812;
}

.gb-job-badges span {
  min-height: 28px;
  background: rgba(5, 8, 18, 0.78);
  box-shadow: 0 6px 16px rgba(5, 8, 18, 0.16);
}

.gb-job-title,
.gb-card-title {
  color: var(--gb-ink);
  font-size: 18px;
  letter-spacing: 0;
}

.gb-application-layout {
  display: grid;
  gap: 12px;
}

.gb-application-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(230, 237, 245, 0.98);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(5, 8, 18, 0.96), rgba(18, 240, 232, 0.16), rgba(255, 45, 111, 0.14)),
    #050812;
}

.gb-application-thumb img,
.gb-application-thumb .gb-campaign-image-placeholder {
  width: 100%;
  height: 100%;
}

.gb-application-thumb img {
  display: block;
  object-fit: cover;
}

.gb-meta {
  border-color: #e7edf5;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.gb-meta-label {
  color: #748094;
  text-transform: none;
}

.gb-campaign-hero-image {
  border: 1px solid rgba(230, 237, 245, 0.95);
  background:
    linear-gradient(135deg, rgba(5, 8, 18, 0.9), rgba(18, 240, 232, 0.18), rgba(255, 45, 111, 0.18)),
    #050812;
}

.gb-campaign-hero-copy h1 {
  font-size: 31px;
  letter-spacing: 0;
}

.gb-gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gb-gallery-strip::-webkit-scrollbar {
  display: none;
}

.gb-gallery-strip figure {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
}

.gb-rich-list li,
.gb-work-check,
.gb-deliverable-card {
  border-color: #e7edf5;
  background: #fbfdff;
}

.gb-sticky-cta {
  bottom: calc(var(--gb-bottom) + 10px);
  border-color: rgba(18, 240, 232, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--gb-shadow-strong);
}

.gb-state {
  background:
    linear-gradient(180deg, rgba(18, 240, 232, 0.045), rgba(255, 45, 111, 0.035)),
    rgba(255, 255, 255, 0.94);
}

.gb-state-icon {
  width: 56px;
  height: 56px;
  color: #05727a;
  background: rgba(18, 240, 232, 0.12);
}

.gb-tabs {
  gap: 8px;
  padding: 5px;
  border-color: #e3ebf4;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(7, 17, 31, 0.05);
}

.gb-tab-btn {
  min-height: 38px;
  border-radius: 8px;
}

.gb-tab-btn.is-active {
  background: #050812;
  box-shadow: 0 10px 20px rgba(5, 8, 18, 0.16);
}

.gb-bottom-nav {
  border-top-color: rgba(230, 237, 245, 0.72);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -10px 34px rgba(7, 17, 31, 0.08);
}

.gb-bottom-inner {
  gap: 7px;
  padding: 2px;
}

.gb-nav-item {
  min-height: 58px;
  border-radius: 8px;
  color: #697587;
}

.gb-nav-icon {
  width: 28px;
  height: 28px;
  background: #f0f4f8;
  color: #6b7788;
}

.gb-nav-label {
  font-size: 11px;
  font-weight: 900;
}

.gb-nav-item.is-active {
  color: #050812;
  background: linear-gradient(180deg, rgba(18, 240, 232, 0.13), rgba(255, 45, 111, 0.08));
  box-shadow: inset 0 0 0 1px rgba(18, 240, 232, 0.18);
}

.gb-nav-item.is-active .gb-nav-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #050812, #087f90 72%, #12f0e8);
}

.gb-toast {
  border: 1px solid rgba(18, 240, 232, 0.18);
  background: rgba(5, 8, 18, 0.96);
}

.gb-modal-backdrop {
  background: rgba(5, 8, 18, 0.46);
  backdrop-filter: blur(10px);
}

.gb-modal {
  max-height: min(88vh, 720px);
  border: 1px solid rgba(230, 237, 245, 0.98);
  border-radius: 8px 8px 0 0;
}

.gb-apply-auth-modal {
  width: min(760px, calc(100vw - 24px));
  overflow: auto;
}

.gb-auth-split {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.gb-login-inline {
  border-top: 1px solid #e5edf5;
  padding-top: 14px;
}

.gb-otp-modal {
  width: min(520px, calc(100vw - 24px));
}

.gb-otp-note {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 240, 232, 0.2);
  border-radius: 8px;
  color: #224054;
  background: linear-gradient(135deg, rgba(18, 240, 232, 0.1), rgba(255, 45, 111, 0.06));
  font-size: 13px;
  font-weight: 800;
}

.gb-otp-code {
  text-align: center;
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 900;
}

.gb-share-inline {
  margin-top: 16px;
}

.gb-share-link {
  overflow-wrap: anywhere;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #f7f9fc;
  padding: 10px 12px;
  color: #334155;
  font-size: 13px;
}

.gb-message {
  border: 1px solid #e5edf5;
  background: #f7f9fc;
  box-shadow: 0 8px 18px rgba(7, 17, 31, 0.04);
}

.gb-message.me {
  border-color: rgba(18, 240, 232, 0.2);
  background: linear-gradient(135deg, #050812, #087f90);
}

.gb-chat-composer {
  position: sticky;
  bottom: calc(var(--gb-bottom) + 8px);
  padding-top: 4px;
  background: rgba(255, 255, 255, 0.96);
}

.gb-profile-hint {
  border-color: rgba(255, 45, 111, 0.18);
  background: rgba(255, 45, 111, 0.055);
}

.gb-profile-hint.is-complete {
  border-color: rgba(18, 240, 232, 0.22);
  background: rgba(18, 240, 232, 0.08);
}

.gb-work-check.is-done {
  border-color: rgba(18, 240, 232, 0.22);
  background: rgba(18, 240, 232, 0.08);
}

.gb-work-check.is-done span {
  border-color: #087f90;
  background: linear-gradient(135deg, #050812, #087f90);
}

.gb-avatar {
  border-color: rgba(18, 240, 232, 0.18);
  background: linear-gradient(135deg, #050812 0%, #087f90 58%, #ff2d6f 100%);
  box-shadow: 0 14px 28px rgba(7, 17, 31, 0.13);
}

.gb-seo-fallback {
  max-width: 920px;
  margin: 28px auto;
  padding: 28px;
  color: #eaf6fb;
  background: linear-gradient(145deg, #050812 0%, #071827 58%, #141026 100%);
  border: 1px solid rgba(130, 228, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(5, 8, 18, 0.28);
}

.gb-seo-fallback h1 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.14;
}

.gb-seo-fallback h2 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.gb-seo-fallback p,
.gb-seo-fallback dd,
.gb-seo-fallback li {
  color: #bdd3df;
}

.gb-seo-fallback dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.gb-seo-fallback dt {
  color: #7fdff4;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gb-seo-fallback dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.gb-seo-fallback a,
.gb-seo-fallback button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 10px 8px 0 0;
  padding: 0 18px;
  color: #041018;
  font-weight: 900;
  text-decoration: none;
  background: #41e4ff;
  border: 0;
  border-radius: 8px;
}

.gb-seo-fallback button {
  color: #eaf6fb;
  background: rgba(255, 255, 255, 0.12);
}

.gb-seo-fallback textarea {
  width: 100%;
  min-height: 116px;
  margin-top: 16px;
  padding: 12px;
  color: #dff7ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(130, 228, 255, 0.2);
  border-radius: 8px;
}

@media (max-width: 430px) {
  .gb-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .gb-brand-subtitle {
    max-width: 178px;
  }

  .gb-header-action {
    min-width: 44px;
    padding: 0 10px;
    font-size: 12px;
  }

  .gb-title {
    max-width: 10.4em;
    font-size: 28px;
  }

  .gb-meta-grid {
    gap: 7px;
  }

  .gb-button-row .gb-btn {
    flex: 1 1 100%;
  }

  .gb-sticky-cta .gb-btn {
    flex-basis: 100%;
  }
}

@media (min-width: 720px) {
  .gb-bottom-nav {
    border-color: rgba(230, 237, 245, 0.92);
    border-radius: 8px;
  }

  .gb-campaign-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
  }

  .gb-campaign-hero-copy {
    padding-top: 0;
  }

  .gb-sticky-cta {
    display: none !important;
  }

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

  .gb-gallery-strip figure {
    flex-basis: auto;
  }

  .gb-application-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
  }

  .gb-auth-split {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: start;
  }

  .gb-login-inline {
    border-top: 0;
    border-left: 1px solid #e5edf5;
    padding-top: 0;
    padding-left: 14px;
  }
}

@media (max-width: 719px) {
  .gb-shell.is-public .gb-main {
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
  }

  .gb-sticky-cta {
    display: flex;
    flex-wrap: nowrap;
  }

  .gb-sticky-cta .gb-btn {
    flex: 1 1 auto;
  }

  .gb-sticky-cta .gb-btn-icon {
    flex: 0 0 52px;
  }
}

/* Phase 7I final GoBooking brand and detail-page polish. */
.gb-brand-lockup {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gb-brand-logo {
  display: block;
  width: min(148px, 46vw);
  height: auto;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
}

.gb-auth-logo.gb-auth-logo-wide {
  width: min(240px, 74vw);
  height: 76px;
  padding: 10px 16px;
  background:
    linear-gradient(135deg, rgba(18, 240, 232, 0.08), rgba(255, 45, 111, 0.08)),
    #050812;
}

.gb-auth-logo.gb-auth-logo-wide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gb-detail-backbar {
  margin: 6px 0 10px;
}

.gb-campaign-hero {
  gap: 16px;
}

.gb-campaign-hero-image {
  min-height: clamp(176px, 46vw, 300px);
  overflow: hidden;
  border-radius: 8px;
}

.gb-campaign-hero-copy h1 {
  max-width: 18em;
  font-size: clamp(23px, 6.1vw, 30px);
  line-height: 1.12;
}

.gb-campaign-hero-copy p {
  max-width: 58ch;
  -webkit-line-clamp: 2;
}

.gb-campaign-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.gb-campaign-hero-meta > div {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.gb-campaign-hero-meta span {
  display: block;
  color: #748094;
  font-size: 11px;
  font-weight: 850;
}

.gb-campaign-hero-meta strong {
  display: block;
  margin-top: 3px;
  color: var(--gb-ink);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gb-shell.has-bottom-nav .gb-main {
  padding-bottom: calc(var(--gb-bottom) + 126px + env(safe-area-inset-bottom, 0px));
}

.gb-shell.has-bottom-nav .gb-sticky-cta {
  bottom: calc(var(--gb-bottom) + 12px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 720px) {
  .gb-brand-logo {
    width: 160px;
  }

  .gb-campaign-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  }

  .gb-campaign-hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gb-shell.has-bottom-nav .gb-main {
    padding-bottom: 34px;
  }
}

@media (max-width: 430px) {
  .gb-brand-logo {
    width: min(128px, 40vw);
  }

  .gb-brand-subtitle {
    max-width: 164px;
  }

  .gb-campaign-hero-meta {
    grid-template-columns: 1fr;
  }

  .gb-campaign-hero-copy h1 {
    font-size: 23px;
  }
}

/* Phase 7J: webapp uses horizontal brand only; app icons stay square. */
.gb-boot-logo,
.gb-topbar .gb-brand-mark {
  display: none;
}

.gb-boot .gb-boot-logo {
  display: grid;
  width: min(220px, 64vw);
  height: 72px;
  padding: 10px 16px;
  border: 1px solid rgba(18, 240, 232, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 240, 232, 0.08), rgba(255, 45, 111, 0.08)),
    #050812;
  box-shadow: 0 18px 38px rgba(5, 8, 18, 0.22);
}

.gb-boot .gb-boot-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gb-topbar-inner {
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.gb-brand {
  flex: 1 1 0;
  gap: 0;
}

.gb-brand-lockup {
  display: grid;
  align-items: center;
  max-width: min(245px, calc(100vw - 140px));
  min-height: 46px;
  padding: 6px 10px;
  border: 1px solid rgba(18, 240, 232, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
}

.gb-brand-title {
  display: block;
  min-width: 0;
}

.gb-brand-logo {
  width: min(174px, 100%);
  max-width: 100%;
  max-height: 28px;
}

.gb-brand-subtitle {
  display: block;
  max-width: 100%;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 430px) {
  .gb-topbar-inner {
    min-height: 58px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .gb-brand-lockup {
    max-width: calc(100vw - 126px);
    min-height: 44px;
    padding: 6px 9px;
  }

  .gb-brand-logo {
    width: min(156px, 100%);
    max-height: 25px;
  }

  .gb-brand-subtitle {
    font-size: 11px;
  }
}

/* Phase 7K: remove redundant logo framing after final asset cleanup. */
.gb-brand-lockup {
  max-width: min(220px, calc(100vw - 132px));
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.gb-brand-logo {
  width: min(190px, 100%);
  max-height: 34px;
  border-radius: 8px;
  box-shadow: none;
}

.gb-brand-subtitle {
  margin-top: 1px;
}

.gb-auth-logo.gb-auth-logo-wide,
.gb-boot .gb-boot-logo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gb-auth-logo.gb-auth-logo-wide {
  width: min(244px, 76vw);
  height: 72px;
}

.gb-boot .gb-boot-logo {
  width: min(230px, 68vw);
  height: 72px;
}

.gb-placeholder-logo {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  background: transparent;
}

.gb-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
}

.gb-role-card,
.gb-business-request-card {
  display: grid;
  gap: 12px;
}

.gb-role-card {
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.gb-role-card.is-active {
  border-color: rgba(0, 184, 199, 0.42);
  box-shadow: 0 20px 46px rgba(0, 184, 199, 0.13);
}

.gb-role-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #1665ff, #00c7ff 55%, #ff4f9a);
}

.gb-business-request-card .gb-profile-hint {
  margin-top: 4px;
}

.gb-role-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(223, 229, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
}

.gb-role-list {
  display: grid;
  gap: 8px;
}

.gb-role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(230, 237, 245, 0.9);
  border-radius: 8px;
  background: #f8fbff;
}

.gb-role-row.is-active {
  border-color: rgba(0, 184, 199, 0.28);
  background: #eefaf6;
}

.gb-role-row strong,
.gb-role-row span {
  display: block;
}

.gb-role-row strong {
  font-size: 13px;
  font-weight: 920;
}

.gb-role-row > div > span {
  margin-top: 3px;
  color: var(--gb-muted);
  font-size: 12px;
  font-weight: 760;
}

@media (max-width: 720px) {
  .gb-role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .gb-role-controls {
    max-width: 112px;
    flex-wrap: wrap;
    gap: 2px 6px;
  }

  .gb-role-badge {
    max-width: 104px;
    min-height: 25px;
    padding: 0 7px;
    font-size: 10px;
  }

  .gb-role-switch {
    min-height: 20px;
    font-size: 10px;
  }

  .gb-brand-lockup {
    max-width: calc(100vw - 188px);
    min-height: 40px;
  }

  .gb-brand-logo {
    width: min(172px, 100%);
    max-height: 31px;
  }
}
