:root {
  --bg: #f8f5ef;
  --bg-secondary: #f2ede5;
  --site-photo: url("../images/backgrounds/aurora-mobile.63897999f181.jpg");
  --page-overlay-top: rgba(248, 245, 239, 0.9);
  --page-overlay-bottom: rgba(242, 237, 229, 0.95);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-muted: rgba(248, 243, 236, 0.98);
  --header-bg: rgba(248, 245, 239, 0.84);
  --input-bg: rgba(255, 255, 255, 0.98);
  --text: #111827;
  --text-soft: #465264;
  --text-dim: #67768a;
  --border: rgba(17, 24, 39, 0.1);
  --border-strong: rgba(17, 24, 39, 0.18);
  --accent: #2fd2c5;
  --accent-2: #3f73ff;
  --button-text: #04111f;
  --glow: rgba(63, 115, 255, 0.14);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  --shadow-strong: 0 32px 82px rgba(15, 23, 42, 0.14);
  --ghost-bg: rgba(255, 255, 255, 0.56);
  --ghost-bg-hover: rgba(255, 255, 255, 0.78);
  --chip-bg: rgba(255, 255, 255, 0.56);
  --chip-bg-active: rgba(255, 255, 255, 0.82);
  --nav-mobile-item-bg: rgba(255, 255, 255, 0.78);
  --atmosphere-opacity: 0.68;
  --radius: 18px;
  --radius-large: 28px;
  --container: 1180px;
  --scroll-progress: 0;
  --pointer-x: 50vw;
  --pointer-y: 22vh;
  --orb-one-shift-x: 0px;
  --orb-one-shift-y: 0px;
  --orb-two-shift-x: 0px;
  --orb-two-shift-y: 0px;
}

[data-theme="dark"] {
  --bg: #07111c;
  --bg-secondary: #0c1725;
  --page-overlay-top: rgba(7, 17, 28, 0.68);
  --page-overlay-bottom: rgba(12, 23, 37, 0.82);
  --surface: rgba(10, 24, 39, 0.76);
  --surface-strong: rgba(14, 28, 45, 0.94);
  --surface-muted: rgba(17, 33, 52, 0.96);
  --header-bg: rgba(8, 18, 30, 0.7);
  --input-bg: rgba(19, 32, 49, 0.96);
  --text: #f4f8fb;
  --text-soft: #9cacbd;
  --text-dim: #7f92a7;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #7de7d6;
  --accent-2: #6d8dff;
  --button-text: #04111f;
  --glow: rgba(125, 231, 214, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 34px 100px rgba(0, 0, 0, 0.38);
  --ghost-bg: rgba(255, 255, 255, 0.02);
  --ghost-bg-hover: rgba(255, 255, 255, 0.06);
  --chip-bg: rgba(255, 255, 255, 0.03);
  --chip-bg-active: rgba(255, 255, 255, 0.08);
  --nav-mobile-item-bg: rgba(255, 255, 255, 0.04);
  --atmosphere-opacity: 0.82;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 15.5px;
  scroll-behavior: smooth;
}

.section-anchor-target {
  scroll-margin-top: 6.2rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg-secondary);
  background-image:
    linear-gradient(180deg, var(--page-overlay-top), var(--page-overlay-bottom)),
    radial-gradient(circle at top left, rgba(47, 210, 197, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(63, 115, 255, 0.16), transparent 26%),
    var(--site-photo);
  background-position: center top, center top, center top, center top;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, cover;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

body::before {
  top: -8rem;
  left: -8rem;
  background: rgba(47, 210, 197, 0.12);
  transform: translate3d(var(--orb-one-shift-x), var(--orb-one-shift-y), 0);
}

body::after {
  right: -12rem;
  bottom: -12rem;
  background: rgba(63, 115, 255, 0.12);
  transform: translate3d(var(--orb-two-shift-x), var(--orb-two-shift-y), 0);
}

body::before,
body::after {
  transition:
    transform 0.45s cubic-bezier(0.18, 0.88, 0.32, 1),
    opacity 0.3s ease;
}

main {
  display: block;
  padding-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.button,
.ghost-button,
label {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

h3 {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

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

p,
li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(30rem 30rem at var(--pointer-x) var(--pointer-y), rgba(125, 231, 214, 0.16), transparent 65%),
    radial-gradient(34rem 34rem at 82% 16%, rgba(109, 141, 255, 0.12), transparent 70%);
  opacity: var(--atmosphere-opacity);
}

.container {
  width: min(100% - clamp(1rem, 3vw, 2.25rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 1.25rem, 640px);
}

.narrow-wide {
  width: min(100% - 1.25rem, 860px);
}

.profile-editor-container {
  width: min(100% - 1.25rem, 1080px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px) saturate(160%);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), rgba(255, 255, 255, 0.9));
  box-shadow: 0 0 22px rgba(63, 115, 255, 0.26);
  opacity: 0.92;
  pointer-events: none;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 48px rgba(7, 17, 28, 0.16);
}

.nav-row,
.site-nav,
.button-row,
.meta-row,
.list-row,
.card-head,
.detail-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-row {
  position: relative;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.06rem;
  font-weight: 700;
  transition: transform 0.24s ease;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 30px var(--glow));
  transition:
    transform 0.3s cubic-bezier(0.18, 0.88, 0.32, 1),
    filter 0.3s ease;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-wordmark {
  letter-spacing: -0.04em;
}

.site-nav {
  position: relative;
  margin-left: auto;
  align-items: center;
  gap: 1rem;
}

.nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--nav-indicator-width, 0px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow:
    0 0 22px rgba(63, 115, 255, 0.26),
    0 0 10px rgba(47, 210, 197, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--nav-indicator-x, 0px), var(--nav-indicator-y, 0px), 0);
  transition:
    transform 0.42s cubic-bezier(0.18, 0.88, 0.32, 1),
    width 0.42s cubic-bezier(0.18, 0.88, 0.32, 1),
    opacity 0.22s ease;
  will-change: transform, width, opacity;
}

.site-nav.has-nav-indicator .nav-indicator {
  opacity: 0.96;
}

.site-nav.is-nav-indicator-static .nav-indicator {
  transition: none;
}

.nav-primary,
.nav-utilities {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.nav-primary {
  justify-content: flex-end;
}

.nav-utilities {
  margin-left: clamp(0.35rem, 1vw, 0.85rem);
}

.nav-inline-form {
  display: flex;
  margin: 0;
}

.nav-link {
  position: relative;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.35rem 0.08rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-nav.has-nav-indicator .nav-link::after {
  opacity: 0;
  transform: scaleX(0.4);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.utility-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.56rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--text-soft);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.25s ease,
    box-shadow 0.35s ease;
}

.utility-chip:hover,
.utility-chip.is-active {
  color: var(--text);
  border-color: var(--border-strong);
}

.utility-chip.is-active {
  background: var(--chip-bg-active);
}

.nav-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--button-text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-pill {
  padding-inline: 0.94rem;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 42px;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  border: 1px solid var(--border-strong);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

.button {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 18px 40px var(--glow);
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.button:active,
.ghost-button:active,
.utility-chip:active,
.nav-link:active,
.text-link:active {
  transform: scale(0.985);
}

.utility-chip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-spinner {
  display: none;
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
  border: 2px solid rgba(4, 17, 31, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.78s linear infinite;
}

.button.is-loading,
.ghost-button.is-loading {
  gap: 0.55rem;
  cursor: wait;
}

.button.is-loading .button-spinner,
.ghost-button.is-loading .button-spinner {
  display: inline-block;
}

.interaction-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  opacity: 0.72;
  transform: scale(0.08);
  animation: rippleBurst 0.65s cubic-bezier(0.18, 0.88, 0.32, 1) forwards;
}

.button:hover {
  box-shadow: 0 24px 52px var(--glow);
}

.button-small {
  padding: 0.64rem 0.94rem;
  min-height: 38px;
}

.ghost-button {
  color: var(--text);
  background: var(--ghost-bg);
}

.ghost-button:hover {
  background: var(--ghost-bg-hover);
}

.text-link {
  position: relative;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.text-link:hover {
  text-shadow: 0 0 18px rgba(125, 231, 214, 0.22);
}

.hero,
.section {
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.section-muted {
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.hero-grid,
.two-column,
.split-grid,
.dashboard-grid,
.card-grid,
.footer-grid,
.profile-stats,
.opportunity-meta-grid,
.value-grid,
.detail-grid {
  display: grid;
  gap: 1.15rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  align-items: start;
  gap: clamp(1.15rem, 2.4vw, 2rem);
}

.two-column,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.15rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.creator-rail-shell {
  display: grid;
  gap: 0.78rem;
}

.creator-rail-toolbar {
  display: flex;
  justify-content: flex-end;
}

.creator-rail-shell:not(.is-scrollable) .creator-rail-toolbar {
  display: none;
}

.creator-rail-controls {
  display: flex;
  gap: 0.55rem;
}

.creator-rail-control {
  min-width: 2.55rem;
  width: 2.55rem;
  padding-inline: 0;
  border-radius: 16px;
}

.creator-rail-control[disabled] {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

.creator-rail {
  --creator-rail-gap: 1rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--creator-rail-gap) * 2)) / 3);
  gap: var(--creator-rail-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0 0 0.35rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.creator-rail:focus-visible {
  outline: 1px solid rgba(63, 115, 255, 0.28);
  outline-offset: 0.28rem;
}

.creator-rail::-webkit-scrollbar {
  display: none;
}

.creator-rail > .creator-card {
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.avatar-shell {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.18), rgba(63, 115, 255, 0.18)),
    var(--surface-muted);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(7, 17, 28, 0.12);
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

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

.avatar-shell span {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: clamp(1rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.avatar-shell-feature {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
}

.avatar-shell-card {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 22px;
}

.avatar-shell-lg {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 26px;
}

.avatar-shell-xl {
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 30px;
}

.avatar-shell-hero {
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 36px;
}

.directory-card {
  padding: 1rem 1.15rem;
}

.business-card {
  padding: 0;
}

.business-card-link {
  position: relative;
  display: block;
  height: 100%;
  padding: 1rem 1.15rem;
  border-radius: inherit;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.business-card-head,
.business-card-id {
  display: flex;
  gap: 0.85rem;
  min-width: 0;
}

.business-card-head {
  align-items: flex-start;
  justify-content: space-between;
}

.business-card-id {
  align-items: center;
  flex: 1 1 auto;
}

.business-card-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.business-card-copy .directory-card-title {
  min-width: 0;
}

.business-card-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.business-card-badges .pill {
  margin-bottom: 0;
}

.business-card-link .directory-card-title {
  transition:
    color 0.22s ease,
    text-shadow 0.22s ease;
}

.business-card-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.business-card-hint::after {
  content: ">";
  font-size: 0.82rem;
  transition: transform 0.24s ease;
}

.business-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.45rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 115, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.16), rgba(63, 115, 255, 0.18)),
    var(--surface-muted);
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.business-card-cta::after {
  content: ">";
  font-size: 0.86rem;
  transition: transform 0.24s ease;
}

.business-card-stage {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.business-card-link:focus-visible {
  outline: none;
}

.business-card:focus-within {
  border-color: rgba(63, 115, 255, 0.24);
  box-shadow:
    0 0 0 4px rgba(63, 115, 255, 0.1),
    var(--shadow);
}

.business-card-link:hover .business-card-hint::after,
.business-card-link:hover .business-card-cta::after,
.business-card-link:focus-visible .business-card-hint::after,
.business-card-link:focus-visible .business-card-cta::after {
  transform: translateX(4px);
}

.business-card-link:hover .business-card-cta,
.business-card-link:focus-visible .business-card-cta {
  border-color: rgba(47, 210, 197, 0.24);
  box-shadow: 0 16px 34px rgba(63, 115, 255, 0.12);
}

  .business-card-link:hover .directory-card-title,
  .business-card-link:focus-visible .directory-card-title {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(125, 231, 214, 0.14);
  }

.opportunity-card {
  padding: 0;
  container-type: inline-size;
  container-name: opportunity-card;
}

.opportunity-card-link {
  position: relative;
  display: grid;
  gap: 0.82rem;
  height: 100%;
  padding: 1rem 1.05rem;
  border-radius: inherit;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.opportunity-card-main {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.opportunity-card-side {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
  align-content: start;
  align-self: start;
}

.opportunity-card-topline,
.opportunity-card-badges,
.opportunity-card-brandline,
.opportunity-card-meta {
  display: flex;
  gap: 0.72rem;
}

.opportunity-card-topline {
  align-items: center;
  margin-bottom: 0.05rem;
}

.opportunity-card-badges {
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.opportunity-card-badges .pill {
  margin-bottom: 0;
}

.opportunity-card-title {
  max-width: 100%;
  font-size: clamp(1.18rem, 1.55vw, 1.62rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: pretty;
  transition:
    color 0.22s ease,
    text-shadow 0.22s ease;
}

.opportunity-card-brandline {
  align-items: center;
  margin-top: 0.1rem;
  max-width: 100%;
  padding: 0.62rem 0.72rem;
  border-radius: 20px;
  border: 1px solid rgba(63, 115, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.1), rgba(63, 115, 255, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.avatar-shell-opportunity {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
}

.opportunity-card-brandcopy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.opportunity-card-brandlabel {
  color: var(--text-dim);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.opportunity-card-brandcopy strong {
  max-width: 100%;
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.opportunity-card-description {
  max-width: 100%;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.56;
}

.opportunity-card-meta {
  align-items: center;
  flex-wrap: wrap;
}

.opportunity-card-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.4rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 115, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.08), rgba(63, 115, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.opportunity-card-location::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(63, 115, 255, 0.28);
}

.opportunity-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  justify-content: center;
  width: fit-content;
  min-height: 2.2rem;
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 115, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.16), rgba(63, 115, 255, 0.18)),
    var(--surface-muted);
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.opportunity-card-cta::after {
  content: ">";
  font-size: 0.86rem;
  transition: transform 0.24s ease;
}

.opportunity-card-budget {
  display: grid;
  gap: 0.16rem;
  padding: 0.82rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(63, 115, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(47, 210, 197, 0.16), rgba(63, 115, 255, 0.12)),
    var(--surface-muted);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(7, 17, 28, 0.08);
}

.opportunity-card-budget span {
  color: var(--text-dim);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.opportunity-card-budget strong {
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.02rem, 1.18vw, 1.32rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.opportunity-card-budget small {
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.opportunity-card-link:focus-visible {
  outline: none;
}

.opportunity-card:focus-within {
  border-color: rgba(63, 115, 255, 0.24);
  box-shadow:
    0 0 0 4px rgba(63, 115, 255, 0.1),
    var(--shadow);
}

.opportunity-card-link:hover .opportunity-card-cta,
.opportunity-card-link:focus-visible .opportunity-card-cta {
  border-color: rgba(47, 210, 197, 0.24);
  box-shadow: 0 16px 34px rgba(63, 115, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.2), rgba(63, 115, 255, 0.22)),
    var(--surface-muted);
}

.opportunity-card-link:hover .opportunity-card-cta::after,
.opportunity-card-link:focus-visible .opportunity-card-cta::after {
  transform: translateX(4px);
}

.opportunity-card-link:hover .opportunity-card-budget,
.opportunity-card-link:focus-visible .opportunity-card-budget {
  border-color: rgba(47, 210, 197, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 48px rgba(63, 115, 255, 0.12);
}

.opportunity-card-link:hover .opportunity-card-title,
.opportunity-card-link:focus-visible .opportunity-card-title,
.opportunity-card-link:hover .opportunity-card-brandcopy strong,
.opportunity-card-link:focus-visible .opportunity-card-brandcopy strong {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(125, 231, 214, 0.14);
}

@container opportunity-card (min-width: 720px) {
  .opportunity-card-link {
    grid-template-columns: minmax(0, 1fr) minmax(185px, 210px);
    align-items: start;
    gap: 0.95rem;
    padding: 1rem 1.05rem;
  }

  .opportunity-card-side {
    padding-left: 0.78rem;
    border-left: 1px solid rgba(63, 115, 255, 0.12);
    align-content: start;
  }

  .opportunity-card-cta {
    justify-self: end;
  }

  .opportunity-card-budget {
    width: 100%;
  }
}

.opportunity-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  margin-top: 0.52rem;
  font-size: 0.84rem;
}

.opportunity-brand-link::after {
  content: ">";
  font-size: 0.82rem;
  transition: transform 0.24s ease;
}

.opportunity-brand-link:hover::after,
.opportunity-brand-link:focus-visible::after {
  transform: translateX(4px);
}

.directory-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.directory-card .pill {
  margin-bottom: 0.3rem;
}

.creator-card-header,
.featured-creator-head,
.profile-identity,
.dashboard-identity,
.profile-upload-preview {
  display: flex;
  gap: 0.9rem;
}

.creator-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.72rem;
}

.featured-creator-head,
.profile-identity,
.dashboard-identity,
.profile-upload-preview {
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.creator-card-copy,
.featured-creator-copy,
.profile-identity-copy,
.dashboard-identity-copy,
.profile-upload-preview-copy {
  min-width: 0;
}

.creator-card-copy,
.featured-creator-copy {
  display: grid;
  gap: 0.16rem;
  align-content: center;
}

.creator-card-copy .directory-card-title,
.featured-creator-copy h3 {
  max-width: 100%;
  margin-top: 0.02rem;
}

.creator-card-copy .pill {
  max-width: 100%;
  width: fit-content;
  padding: 0.28rem 0.64rem;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.73rem;
}

.directory-card-title {
  font-size: clamp(1.22rem, 1.55vw, 1.58rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.brand-name-display {
  font-size: clamp(1.66rem, 2.35vw, 2.46rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}

.brand-name-card {
  font-size: clamp(1.06rem, 1.24vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.brand-name-inline {
  display: block;
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.brand-name-inline-ellipsis {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-card .directory-card-title {
  max-width: 100%;
  font-size: clamp(0.98rem, 1.1vw, 1.18rem);
  line-height: 1.08;
}

.creator-card .directory-card-title a {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-card-title-singleline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-audience {
  align-self: center;
  justify-self: end;
  flex-shrink: 0;
  min-width: 112px;
  padding: 0.42rem 0.6rem;
  border-radius: 16px;
  border: 1px solid rgba(63, 115, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.16), rgba(63, 115, 255, 0.2)),
    var(--surface-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: right;
}

.creator-audience-label {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--text-dim);
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.creator-audience-value {
  display: block;
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.creator-audience-meta {
  display: block;
  margin-top: 0.08rem;
  color: var(--text-soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.creator-card {
  padding: 0.95rem 1rem;
  overflow: hidden;
}

.directory-card p {
  margin-top: 0.42rem;
  font-size: 0.98rem;
}

.creator-card-summary {
  display: -webkit-box;
  margin-top: 0.32rem;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.directory-card .meta-row {
  margin-top: 0.7rem;
}

.directory-card .meta-row span {
  font-size: 0.92rem;
}

.directory-card-footer {
  align-items: center;
}

.creator-card-footer {
  margin-top: 0.52rem;
}

.creator-card-location {
  font-size: 0.88rem;
}

.creator-card-link {
  font-size: 0.88rem;
}

.creator-card .avatar-shell-card {
  width: 4rem;
  height: 4rem;
  border-radius: 20px;
}

.featured-creator-head {
  margin-bottom: 0.65rem;
}

.profile-editor-form,
.profile-editor-side,
.profile-editor-fields {
  min-width: 0;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

.detail-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 1.15rem;
}

.hero h1 {
  max-width: 12ch;
}

.lead {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  max-width: 42rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-panel,
.card,
.flash {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel::before,
.card::before,
.flash::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
}

.hero-panel::after,
.card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -52%;
  width: 62%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translate3d(-18%, 0, 0) rotate(14deg);
  transition:
    opacity 0.35s ease,
    transform 0.9s cubic-bezier(0.18, 0.88, 0.32, 1);
  pointer-events: none;
}

.hero-panel,
.card {
  padding: clamp(1rem, 1.8vw, 1.45rem);
}

.hero-panel {
  box-shadow: var(--shadow-strong);
}

.panel-accent {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-bottom: 1rem;
}

.feature-list,
.stack-list,
.link-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  list-style: none;
}

.feature-list li,
.stack-item {
  position: relative;
  padding-left: 1rem;
}

.feature-list li::before,
.stack-item::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.stat-card,
.profile-stats > div,
.metric-tile,
.value-item {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.stat-card,
.profile-stats > div,
.metric-tile {
  min-width: 136px;
  padding: 0.95rem;
}

.stat-card strong,
.profile-stats strong,
.card strong,
.metric-tile strong,
.value-item strong {
  display: block;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  color: var(--text);
}

.value-item .brand-name-inline {
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.stat-card span,
.profile-stats span,
.metric-tile span,
.value-item span,
.meta-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.metric-tile-highlight {
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.16), rgba(63, 115, 255, 0.16)),
    var(--surface-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section-header,
.profile-hero,
.opportunity-hero,
.card-head,
.detail-card-head {
  justify-content: space-between;
  align-items: flex-start;
}

.section-header,
.profile-hero,
.detail-card-head {
  margin-bottom: 1.15rem;
}

.section-header h1,
.card > h1,
.dashboard-identity-copy h1,
.profile-identity-copy h1 {
  font-size: clamp(1.82rem, 2.9vw, 2.8rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.section-header .brand-name-display,
.profile-hero .brand-name-display {
  font-size: clamp(1.66rem, 2.35vw, 2.46rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}

.section-header > div,
.card-head > div,
.detail-card-head > div,
.list-row > div,
.list-row > .meta-stack,
.business-profile-copy,
.opportunity-copy,
.profile-editor-header-copy {
  min-width: 0;
}

.profile-editor-header {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.profile-editor-header .eyebrow {
  margin-bottom: 0;
}

.profile-editor-header-copy {
  display: grid;
  gap: 0.28rem;
  max-width: 48rem;
}

.profile-editor-header h1 {
  max-width: none;
  font-size: clamp(1.78rem, 2.65vw, 2.44rem);
}

.profile-editor-header p {
  font-size: 0.93rem;
  line-height: 1.58;
  max-width: 54ch;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.business-profile-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.business-profile-copy {
  min-width: 0;
  max-width: 48rem;
}

.creator-profile-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.profile-identity-copy,
.dashboard-identity-copy {
  display: grid;
  gap: 0.42rem;
}

.profile-identity-copy p,
.dashboard-identity-copy p {
  max-width: 58ch;
}

.profile-identity-meta,
.dashboard-identity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
  color: var(--text-soft);
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.card.list-row {
  padding: 1rem 1.05rem;
  border-bottom: 0;
}

.list-row strong,
.list-row p,
.message-card strong,
.message-card p,
.link-list a {
  overflow-wrap: anywhere;
}

.profile-editor-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 1rem 1.15rem;
  align-items: start;
}

.profile-editor-side {
  display: grid;
  gap: 0.82rem;
}

.profile-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem 0.95rem;
  align-content: start;
}

.field-span-full {
  grid-column: 1 / -1;
}

.profile-editor-form input:not([type="hidden"]):not(.toggle-input):not(.file-input-native),
.profile-editor-form textarea,
.profile-editor-form select {
  min-height: 46px;
  padding: 0.76rem 0.9rem;
  border-radius: 15px;
}

.profile-editor-form textarea {
  min-height: 106px;
}

.form-field,
.form-toggle {
  min-width: 0;
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

.form-field-label {
  display: block;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
}

.form-field-help,
.form-field-error {
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-field-help {
  color: var(--text-dim);
}

.form-field-error {
  color: #f87171;
}

.form-errors-banner {
  margin-bottom: 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(248, 113, 113, 0.24);
  background: rgba(127, 29, 29, 0.12);
}

.toggle-card {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
}

.toggle-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.toggle-card-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 76px;
  padding: 0.84rem 0.95rem;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    var(--surface-muted);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.toggle-card-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.toggle-card-copy strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.15;
}

.toggle-card-copy span {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.toggle-card-side {
  display: grid;
  justify-items: end;
  gap: 0.46rem;
  flex-shrink: 0;
}

.toggle-card-state {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.22rem 0.56rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.toggle-card-state::before {
  content: attr(data-state-off);
}

.toggle-switch {
  display: inline-flex;
  align-items: center;
  width: 3.2rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  flex-shrink: 0;
}

.toggle-switch-knob {
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 50%;
  background: var(--surface-strong);
  box-shadow: 0 8px 18px rgba(7, 17, 28, 0.24);
  transition:
    transform 0.3s cubic-bezier(0.18, 0.88, 0.32, 1),
    background 0.25s ease;
}

.toggle-input:checked ~ .toggle-card-ui {
  transform: translateY(-1px);
  border-color: rgba(63, 115, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.16), rgba(63, 115, 255, 0.16)),
    var(--surface-muted);
  box-shadow:
    0 20px 44px rgba(63, 115, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.toggle-input:checked ~ .toggle-card-ui .toggle-card-state {
  border-color: rgba(47, 210, 197, 0.18);
  color: var(--accent);
  background: rgba(47, 210, 197, 0.12);
  box-shadow: 0 10px 24px rgba(47, 210, 197, 0.12);
}

.toggle-input:checked ~ .toggle-card-ui .toggle-card-state::before {
  content: attr(data-state-on);
}

.toggle-input:checked ~ .toggle-card-ui .toggle-switch {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 14px 28px var(--glow);
}

.toggle-input:checked ~ .toggle-card-ui .toggle-switch-knob {
  transform: translateX(1.28rem);
  background: #fff;
}

.toggle-input:focus-visible ~ .toggle-card-ui,
.file-input-native:focus-visible ~ .file-dropzone-copy,
.file-input-native:focus-visible ~ .file-dropzone-action {
  outline: none;
}

.toggle-input:focus-visible ~ .toggle-card-ui,
.file-dropzone:focus-within {
  box-shadow: 0 0 0 4px rgba(63, 115, 255, 0.12);
}

.file-field {
  display: grid;
  gap: 0.55rem;
}

.file-field-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.file-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.file-status-pill.is-live {
  border-color: rgba(47, 210, 197, 0.18);
  color: var(--accent);
  background: rgba(47, 210, 197, 0.1);
}

.file-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.9rem 0.98rem;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    var(--input-bg);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.3s ease;
}

.file-dropzone:hover {
  transform: translateY(-1px);
  border-color: rgba(63, 115, 255, 0.22);
  box-shadow: 0 18px 38px rgba(63, 115, 255, 0.12);
}

.file-dropzone.is-selected {
  border-color: rgba(47, 210, 197, 0.24);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.14), rgba(63, 115, 255, 0.12)),
    var(--input-bg);
  box-shadow:
    0 18px 40px rgba(47, 210, 197, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.file-dropzone-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.file-dropzone-copy strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.16;
}

.file-dropzone-copy span {
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-dropzone-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47, 210, 197, 0.22), rgba(63, 115, 255, 0.24));
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.file-status-pill.is-pending {
  border-color: rgba(63, 115, 255, 0.2);
  color: var(--accent-2);
  background: rgba(63, 115, 255, 0.08);
}

.file-input-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-toggle-inline .toggle-card-ui {
  min-height: 62px;
  padding: 0.74rem 0.88rem;
}

.file-toggle-inline .toggle-card-copy strong {
  font-size: 0.9rem;
}

.file-toggle-inline .toggle-card-copy span {
  font-size: 0.81rem;
}

.file-toggle-inline .toggle-card-state {
  min-height: 1.35rem;
  padding-inline: 0.48rem;
  font-size: 0.64rem;
}

.profile-editor-submit {
  width: 100%;
  margin-top: 0.1rem;
}

.profile-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.meta-row,
.meta-stack,
.stack-item,
.align-right {
  color: var(--text-soft);
}

.meta-row {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.meta-stack {
  display: grid;
  gap: 0.35rem;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: rgba(47, 210, 197, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pill-soft {
  background: rgba(63, 115, 255, 0.12);
  color: var(--accent-2);
}

.filter-bar,
.stack-form {
  display: grid;
  gap: 0.85rem;
}

.filter-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0.85rem;
  margin-bottom: 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.stack-form p {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.stack-form .helptext {
  font-size: 0.84rem;
  color: var(--text-dim);
}

.errorlist {
  margin: 0;
  padding-left: 1rem;
  color: #dc2626;
  font-size: 0.86rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(63, 115, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(63, 115, 255, 0.12);
}

label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.flash-stack {
  padding-top: 1rem;
}

.flash {
  padding: 0.9rem 1.05rem;
  margin-bottom: 0.75rem;
  border-radius: 20px;
}

.flash-success {
  border-left: 4px solid #059669;
}

.flash-error {
  border-left: 4px solid #dc2626;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-strong);
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 30rem;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 30px var(--glow));
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-brand-copy {
  display: grid;
  gap: 0.32rem;
}

.footer-brand-copy strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}

.footer-brand-copy span {
  color: var(--text-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text-soft);
}

.footer-grid h4 {
  margin-bottom: 0.7rem;
}

.footer-grid p {
  max-width: 30ch;
}

.list-row {
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}

.list-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.message-card {
  border-left: 4px solid transparent;
}

.message-own {
  border-left-color: var(--accent);
}

.mobile-only {
  display: none;
}

.opportunity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  gap: 1rem;
}

.opportunity-copy .lead {
  margin-top: 0.95rem;
}

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

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

.value-item {
  padding: 0.95rem 1rem;
}

.value-item strong {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.application-panel .button {
  width: 100%;
}

.budget-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.14), rgba(63, 115, 255, 0.12)),
    var(--surface-muted);
  border: 1px solid rgba(63, 115, 255, 0.16);
}

.budget-callout strong {
  margin-top: 0.35rem;
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
}

.budget-callout p {
  margin-top: 0.45rem;
}

.budget-callout-side {
  min-width: 120px;
  text-align: right;
}

.application-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.opportunity-detail-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  gap: 1.1rem;
}

.opportunity-detail-copy {
  display: grid;
  align-content: start;
  gap: 0.78rem;
  min-width: 0;
  max-width: 50rem;
}

.opportunity-detail-copy .eyebrow,
.opportunity-section-topline .eyebrow,
.opportunity-section-topline .pill {
  margin-bottom: 0;
}

.opportunity-detail-title {
  max-width: 10ch;
  font-size: clamp(2.3rem, 4vw, 4.05rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: pretty;
}

.opportunity-detail-lead {
  max-width: 45ch;
  margin-top: 0;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.58;
}

.opportunity-detail-side {
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

.opportunity-budget-tile {
  padding: 1.05rem 1.1rem;
  border-radius: 24px;
}

.opportunity-budget-tile strong {
  margin-top: 0.42rem;
  font-size: clamp(1.42rem, 2vw, 1.95rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.opportunity-facts-card {
  display: grid;
  gap: 0;
  padding: 0.55rem 1rem;
}

.opportunity-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.72rem 0;
}

.opportunity-fact + .opportunity-fact {
  border-top: 1px solid rgba(63, 115, 255, 0.12);
}

.opportunity-fact span {
  display: inline-flex;
  align-items: center;
}

.opportunity-fact strong {
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.16;
  text-align: right;
}

.opportunity-detail-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
}

.opportunity-brief-card,
.opportunity-application-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.opportunity-section-head {
  margin-bottom: 0.92rem;
}

.opportunity-section-copy {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
  max-width: 34rem;
}

.opportunity-section-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.opportunity-section-title {
  max-width: 12ch;
  font-size: clamp(1.56rem, 2.2vw, 2.16rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.opportunity-brief-card .opportunity-section-title {
  max-width: 11ch;
}

.opportunity-value-grid {
  gap: 0.9rem;
}

.opportunity-value-item {
  display: grid;
  align-content: start;
  gap: 0.18rem;
  padding: 0.92rem 1rem;
}

.opportunity-value-item span {
  font-size: 0.68rem;
}

.opportunity-value-item strong {
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  line-height: 1.16;
}

.opportunity-value-item-brand .brand-name-inline {
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.opportunity-owner-actions {
  margin-top: 0.95rem;
}

.opportunity-budget-callout {
  gap: 0.95rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.85rem;
}

.opportunity-budget-copy {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.opportunity-budget-copy strong {
  margin-top: 0;
  font-size: clamp(1.18rem, 1.9vw, 1.54rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.opportunity-budget-copy p {
  max-width: 34ch;
  margin-top: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.56;
}

.opportunity-budget-signal {
  display: grid;
  gap: 0.2rem;
  min-width: 138px;
  padding-left: 1rem;
  border-left: 1px solid rgba(63, 115, 255, 0.14);
  text-align: right;
}

.opportunity-budget-signal strong {
  margin-top: 0;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.05;
}

.opportunity-application-note {
  margin-top: 0;
  margin-bottom: 0.15rem;
  padding: 0.82rem 0.92rem;
  border-radius: 18px;
  border: 1px solid rgba(63, 115, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.opportunity-application-card .stack-form {
  margin-top: 0.15rem;
}

.opportunity-application-card .stack-form p {
  gap: 0.45rem;
}

.profile-upload-preview {
  padding: 0.92rem 0.98rem;
  border-radius: 24px;
  border: 1px solid rgba(63, 115, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(47, 210, 197, 0.12), rgba(63, 115, 255, 0.12)),
    var(--surface-muted);
}

.profile-upload-preview-stack {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  gap: 0.9rem;
}

.profile-upload-preview-copy strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.18;
}

.profile-upload-preview-copy p {
  font-size: 0.87rem;
  line-height: 1.6;
}

.auth-card {
  box-shadow: var(--shadow-strong);
}

.auth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 13rem);
}

.auth-container {
  width: min(100% - 1.25rem, 440px);
}

.auth-container-wide {
  width: min(100% - 1.25rem, 520px);
}

.auth-card-simple {
  width: 100%;
  padding: 1.15rem 1.15rem 1.05rem;
}

.auth-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  text-align: center;
}

.auth-title {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.06;
}

.auth-copy {
  max-width: 30ch;
  margin: 0 auto;
  font-size: 0.93rem;
  line-height: 1.55;
}

.auth-card-simple .stack-form {
  gap: 0.78rem;
}

.auth-card-simple .stack-form p {
  gap: 0.42rem;
}

.auth-card-simple label {
  font-size: 0.82rem;
}

.auth-card-simple .helptext {
  font-size: 0.78rem;
  line-height: 1.5;
}

.auth-card-simple .errorlist {
  font-size: 0.8rem;
}

.auth-card-simple input,
.auth-card-simple textarea,
.auth-card-simple select {
  min-height: 46px;
  padding: 0.76rem 0.88rem;
  border-radius: 14px;
}

.auth-card-simple .button {
  width: 100%;
}

.social-auth-block {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 0.92rem;
}

.social-auth-form {
  margin: 0;
}

.social-button {
  width: 100%;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding-inline: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    var(--surface-strong);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: 0 16px 34px rgba(7, 17, 28, 0.08);
}

.social-button:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09)),
    var(--surface-strong);
  box-shadow: 0 20px 44px rgba(63, 115, 255, 0.14);
}

.social-button-badge {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.social-button-badge svg {
  width: 0.9rem;
  height: 0.9rem;
}

.social-auth-note {
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin-bottom: 0.15rem;
}

.auth-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid var(--border);
}

.auth-divider span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-theme="dark"] .auth-divider span {
  background: rgba(14, 28, 45, 0.9);
}

.auth-footer {
  margin-top: 0.95rem;
  text-align: center;
  font-size: 0.92rem;
}

.card,
.hero-panel,
.filter-bar,
.stat-card,
.profile-stats > div,
.metric-tile,
.value-item,
.budget-callout,
.creator-audience,
.list-row {
  transition:
    transform 0.45s cubic-bezier(0.18, 0.88, 0.32, 1),
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.35s ease;
}

@media (min-width: 900px) {
  :root {
    --site-photo: url("../images/backgrounds/aurora-desktop.791c95d060f0.jpg");
  }
}

@media (prefers-reduced-data: reduce) {
  :root {
    --site-photo: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .motion-target {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(22px) scale(0.985);
    transition:
      opacity 0.74s cubic-bezier(0.18, 0.88, 0.32, 1),
      filter 0.74s cubic-bezier(0.18, 0.88, 0.32, 1),
      transform 0.74s cubic-bezier(0.18, 0.88, 0.32, 1),
      border-color 0.35s ease,
      box-shadow 0.45s ease,
      background 0.35s ease;
    transition-delay: calc(var(--motion-index, 0) * 70ms);
    will-change: transform, opacity, filter;
  }

  .motion-ready .motion-target.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }

  .button,
  .ghost-button,
  .utility-chip,
  .brand-mark {
    will-change: transform;
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .brand:hover .brand-mark {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 16px 34px var(--glow)) saturate(118%);
  }

  .card:hover,
  .hero-panel:hover,
  .filter-bar:hover,
  .budget-callout:hover {
    transform: translateY(-6px);
    border-color: rgba(63, 115, 255, 0.2);
    box-shadow: 0 28px 82px rgba(7, 17, 28, 0.18);
  }

  .card:hover::after,
  .hero-panel:hover::after {
    opacity: 0.78;
    transform: translate3d(92%, 0, 0) rotate(14deg);
  }

  .button:hover {
    box-shadow: 0 26px 58px var(--glow);
  }

  .utility-chip:hover {
    box-shadow: 0 20px 44px rgba(63, 115, 255, 0.18);
  }

  .ghost-button:hover {
    box-shadow: 0 20px 44px rgba(63, 115, 255, 0.18);
  }
}

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

@keyframes rippleBurst {
  to {
    opacity: 0;
    transform: scale(2.75);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .opportunity-hero,
  .detail-grid,
  .profile-hero,
  .two-column,
  .split-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-meta-grid,
  .profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-rail {
    grid-auto-columns: calc((100% - var(--creator-rail-gap)) / 2);
  }

  .opportunity-detail-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunity-detail-title {
    max-width: 12ch;
    font-size: clamp(2.12rem, 5.4vw, 3.24rem);
  }

  .profile-editor-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid,
  .card-grid,
  .filter-bar,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-row {
    min-height: 64px;
  }

  .site-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    z-index: 60;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.85rem) scale(0.985);
    transition:
      opacity 0.26s ease,
      visibility 0s linear 0.26s,
      transform 0.26s cubic-bezier(0.18, 0.88, 0.32, 1);
  }

  .nav-primary,
  .nav-utilities {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .nav-utilities {
    margin-left: 0;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
  }

  .nav-inline-form {
    width: 100%;
  }

  .site-nav a,
  .site-nav button {
    width: 100%;
  }

  .nav-link,
  .utility-chip {
    justify-content: space-between;
    padding: 0.82rem 0.92rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--nav-mobile-item-bg);
  }

  .nav-link::after {
    display: none;
  }

  .nav-indicator {
    display: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .mobile-only {
    display: inline-flex;
  }

  .section-header,
  .card-head,
  .detail-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-hero,
  .profile-identity,
  .profile-upload-preview {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-editor-fields {
    grid-template-columns: 1fr;
  }

  .profile-upload-preview-stack {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .file-field-head,
  .file-dropzone {
    flex-direction: column;
    align-items: flex-start;
  }

  .file-dropzone-action {
    width: 100%;
  }

  .button-row {
    flex-wrap: wrap;
  }

  .budget-callout {
    grid-template-columns: 1fr;
  }

  .budget-callout-side {
    text-align: left;
  }

  .opportunity-section-title {
    max-width: none;
    font-size: clamp(1.42rem, 5.4vw, 1.95rem);
  }

  .opportunity-detail-side {
    grid-template-columns: 1fr;
  }

  .opportunity-budget-signal {
    min-width: 0;
    padding-left: 0;
    padding-top: 0.7rem;
    border-left: 0;
    border-top: 1px solid rgba(63, 115, 255, 0.14);
    text-align: left;
  }

  .opportunity-budget-copy p {
    max-width: none;
  }

  .auth-section {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .hero,
  .section {
    padding: 2.35rem 0;
  }

  [data-theme="light"] .site-shell::before {
    opacity: 0.54;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  .creator-rail {
    grid-auto-columns: 100%;
  }

  .card,
  .hero-panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .lead {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .profile-editor-header h1 {
    font-size: clamp(1.58rem, 7vw, 2rem);
  }

  .profile-editor-header p {
    font-size: 0.86rem;
  }

  .brand {
    gap: 0.65rem;
    font-size: 1rem;
  }

  .brand-mark {
    width: 1.95rem;
    height: 1.95rem;
  }

  .button,
  .ghost-button {
    min-height: 40px;
    padding: 0.7rem 0.95rem;
    font-size: 0.88rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.7rem;
  }

  .button-row > * {
    width: 100%;
    justify-content: center;
  }

  input,
  textarea,
  select {
    min-height: 48px;
    padding: 0.78rem 0.88rem;
  }

  .stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .stat-card,
  .profile-stats > div,
  .metric-tile,
  .value-item {
    min-width: 0;
  }

  .profile-stats,
  .opportunity-meta-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-detail-hero {
    gap: 0.95rem;
  }

  .opportunity-detail-title {
    max-width: 11ch;
    font-size: clamp(1.92rem, 8.8vw, 2.72rem);
  }

  .opportunity-detail-lead {
    font-size: 0.93rem;
  }

  .opportunity-budget-tile,
  .opportunity-facts-card,
  .opportunity-budget-callout,
  .opportunity-application-note {
    border-radius: 20px;
  }

  .opportunity-budget-tile strong {
    font-size: 1.34rem;
  }

  .opportunity-fact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .opportunity-fact strong {
    font-size: 0.95rem;
    text-align: left;
  }

  .opportunity-budget-copy strong {
    font-size: 1.22rem;
  }

  .opportunity-budget-signal strong {
    font-size: 1rem;
  }

  .list-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

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

  .card.list-row {
    padding: 0.95rem;
  }

  .directory-card-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .creator-audience {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .creator-card-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .creator-card .avatar-shell-card {
    width: 3.72rem;
    height: 3.72rem;
    border-radius: 18px;
  }

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

  .opportunity-card-title {
    max-width: 100%;
  }

  .opportunity-card-cta,
  .business-card-cta {
    width: 100%;
    justify-content: center;
  }

  .opportunity-card-side {
    width: 100%;
  }

  .opportunity-card-budget {
    width: 100%;
  }

  .avatar-shell-card {
    width: 3.8rem;
    height: 3.8rem;
  }

  .avatar-shell-xl {
    width: 5.6rem;
    height: 5.6rem;
  }

  .profile-editor-form input:not([type="hidden"]):not(.toggle-input):not(.file-input-native),
  .profile-editor-form textarea,
  .profile-editor-form select {
    min-height: 45px;
    padding: 0.72rem 0.84rem;
  }

  .profile-editor-form textarea {
    min-height: 96px;
  }

  .toggle-card-ui,
  .file-dropzone,
  .profile-upload-preview {
    padding: 0.82rem 0.88rem;
    border-radius: 20px;
  }

  .toggle-card-copy strong,
  .file-dropzone-copy strong {
    font-size: 0.9rem;
  }

  .toggle-card-copy span,
  .file-dropzone-copy span,
  .profile-upload-preview-copy p {
    font-size: 0.81rem;
  }

  .avatar-shell-hero {
    width: 6.9rem;
    height: 6.9rem;
    border-radius: 30px;
  }

  .auth-card-simple {
    padding: 1rem;
  }

  .auth-header {
    margin-bottom: 0.85rem;
  }

  .auth-copy,
  .auth-footer {
    font-size: 0.9rem;
  }

  .section-header h1,
  .card > h1,
  .dashboard-identity-copy h1,
  .profile-identity-copy h1 {
    font-size: clamp(1.62rem, 7vw, 2.25rem);
    text-wrap: pretty;
  }

  .section-header .button,
  .section-header .ghost-button,
  .card-head .button,
  .card-head .ghost-button,
  .detail-card-head .button,
  .detail-card-head .ghost-button {
    width: 100%;
    justify-content: center;
  }
}
