:root {
  color-scheme: dark;
  --ink: #050914;
  --ink-2: #0a1020;
  --panel: rgba(11, 18, 32, 0.78);
  --panel-strong: rgba(14, 22, 38, 0.92);
  --line: rgba(244, 214, 150, 0.18);
  --line-cool: rgba(148, 163, 184, 0.16);
  --text: #fbf7ef;
  --muted: #a8b0bf;
  --gold: #f5c76b;
  --gold-strong: #f2a93b;
  --coral: #ff7b68;
  --blue: #77d9ff;
  --green: #75e0a7;
  --danger: #ff9a9a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --display-font: "Fraunces", "Iowan Old Style", "New York", Georgia, serif;
  --body-font: "Avenir Next", "SF Pro Text", "Segoe UI Variable", sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 14% 8%, rgba(245, 199, 107, 0.2), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(119, 217, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 88%, rgba(255, 123, 104, 0.12), transparent 30%),
    linear-gradient(145deg, #030712 0%, #0a1020 48%, #111827 100%);
  color: var(--text);
  font-family: var(--body-font);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at top, black, transparent 74%);
}

a {
  color: inherit;
}

.pageShell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topNav,
.panel,
.card,
.metricCard,
.listItem {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.topNav {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-radius: 999px;
  padding: 12px 14px 12px 18px;
  margin-bottom: 30px;
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand strong {
  font-family: var(--display-font);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand span,
.muted {
  color: var(--muted);
}

.betaPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 217, 255, 0.24);
  border-radius: 999px;
  background: rgba(119, 217, 255, 0.1);
  color: #caefff;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.navLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.navLinks a,
.button {
  appearance: none;
  border: 1px solid rgba(244, 214, 150, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #f8fafc;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.navLinks a:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 199, 107, 0.45);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.navLinks a.pill,
.button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  color: #17120a;
  box-shadow: 0 16px 34px rgba(242, 169, 59, 0.22);
}

.button--danger {
  border-color: rgba(255, 154, 154, 0.45);
  color: #ffd8d8;
}

.button--small {
  min-height: 34px;
  padding: 8px 11px;
  font-size: 0.82rem;
}

.oauthStack {
  display: grid;
  gap: 10px;
  margin: 10px 0 14px;
}

.oauthButton {
  justify-content: center;
  width: 100%;
  min-height: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.hero {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 36px 0 28px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(244, 214, 150, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 199, 107, 0.18), transparent 32%),
    radial-gradient(circle at 95% 12%, rgba(119, 217, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(14, 22, 38, 0.92), rgba(5, 9, 20, 0.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
}

.hero--compact {
  margin-bottom: 18px;
  padding-block: clamp(22px, 4vw, 40px);
}

.heroCard {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(244, 214, 150, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  box-shadow: var(--soft-shadow);
}

.heroCard strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.heroCard p {
  color: var(--muted);
  line-height: 1.6;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 123, 104, 0.26), transparent 62%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 199, 107, 0.28);
  background: rgba(245, 199, 107, 0.12);
  color: #ffe4a8;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  max-width: 900px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(42px, 6.5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  z-index: 1;
}

h2,
h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.lead {
  position: relative;
  max-width: 780px;
  color: #d7deea;
  font-size: 18px;
  line-height: 1.65;
  z-index: 1;
}

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

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

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

.sectionHeader {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sectionHeader > p {
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

.panel,
.card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 22px;
  overflow: hidden;
}

.panel::before,
.card::before,
.metricCard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%);
  opacity: 0.62;
}

.card {
  min-height: 210px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 199, 107, 0.36);
  box-shadow: var(--shadow);
}

.price {
  font-family: var(--display-font);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--gold);
}

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

.tierCard {
  position: relative;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
  overflow: hidden;
}

.tierCard--accent {
  border-color: rgba(245, 199, 107, 0.38);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 199, 107, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.featureGrid .listItem {
  min-height: 118px;
}

.venueHero {
  isolation: isolate;
}

.venueHero__kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.venueHero__panel {
  display: grid;
  gap: 14px;
}

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

.miniStatRow span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(119, 217, 255, 0.2);
  border-radius: 999px;
  background: rgba(119, 217, 255, 0.08);
  color: #d6f3ff;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
}

.venueFeatureIcon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1px solid rgba(245, 199, 107, 0.24);
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 199, 107, 0.26), transparent 52%),
    rgba(255, 255, 255, 0.06);
  color: #ffe4a8;
  font-weight: 950;
}

.tierCard__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.tierCard__price span {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.venueTrustStrip .notice {
  min-height: 100%;
}

.partnerFormCard {
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 199, 107, 0.14), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(119, 217, 255, 0.12), transparent 28%),
    var(--panel-strong);
}

.footerCopy {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
  font-size: 13px;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  color: #d9dfeb;
  font-weight: 850;
  font-size: 13px;
}

.fieldHint,
.helperCopy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.fieldHint {
  margin-top: -2px;
}

.helperCopy {
  margin: -2px 0 16px;
}

.beerCatalogueField {
  display: grid;
  gap: 10px;
}

.beerCatalogueField__newBeer {
  width: fit-content;
}

.submitModeBlock {
  display: grid;
  gap: 12px;
}

.submitSectionHeader {
  display: grid;
  gap: 4px;
}

.submitSectionHeader h3 {
  margin: 0;
}

.submitSectionHeader p {
  margin: 0;
}

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

.dayChip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(244, 214, 150, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #d9dfeb;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 850;
}

.dayChip input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--gold);
}

.is-hidden {
  display: none !important;
}

.field input,
.field select,
.field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(244, 214, 150, 0.16);
  background: rgba(3, 7, 18, 0.52);
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(245, 199, 107, 0.52);
  box-shadow: 0 0 0 4px rgba(245, 199, 107, 0.12);
}

.field textarea {
  min-height: 102px;
}

.notice {
  padding: 13px 15px;
  border: 1px solid rgba(119, 217, 255, 0.18);
  border-radius: 18px;
  background: rgba(119, 217, 255, 0.1);
  color: #caefff;
  line-height: 1.55;
}

.notice--warning {
  border-color: rgba(245, 199, 107, 0.24);
  background: rgba(245, 199, 107, 0.12);
  color: #ffe4a8;
}

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

.listItem {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 15px;
}

.emptyState {
  color: var(--muted);
  line-height: 1.6;
}

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

.missionCard {
  display: grid;
  gap: 10px;
  align-items: start;
}

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

.missionCard__title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.missionCard__title strong {
  line-height: 1.25;
}

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

.missionCard__meta,
.missionCard__actionCopy {
  color: var(--muted);
  line-height: 1.55;
}

.missionCard__action {
  justify-self: start;
  margin-top: 2px;
}

.featureList,
.checkList {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featureList li,
.checkList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d9dfeb;
  line-height: 1.55;
}

.featureList li::before,
.checkList li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  box-shadow: 0 0 18px rgba(245, 199, 107, 0.28);
}

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

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

.qualityScore strong {
  font-family: var(--display-font);
  font-size: 52px;
  letter-spacing: -0.06em;
}

.actionRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dashboardShell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.dashboardSidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.dashboardMain {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.venueSummaryCard {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(119, 217, 255, 0.16);
  border-radius: 20px;
  background: rgba(119, 217, 255, 0.08);
  padding: 13px;
}

.venueSummaryCard span {
  color: var(--muted);
  font-size: 13px;
}

.tabNav {
  display: grid;
  gap: 8px;
}

.tabButton {
  appearance: none;
  border: 1px solid rgba(244, 214, 150, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9dfeb;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 11px 12px;
  text-align: left;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.tabButton:hover,
.tabButton.is-active {
  border-color: rgba(245, 199, 107, 0.4);
  background: rgba(245, 199, 107, 0.12);
  color: #ffe4a8;
}

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

.completionItem {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.35);
  padding: 12px;
}

.completionItem strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.completionItem.is-complete strong {
  color: var(--green);
}

.dataRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.rowActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.rowPrice {
  color: var(--gold);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.miniStatRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.miniStatRow span {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #d9dfeb;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 850;
}

.pill--premium {
  border-color: rgba(119, 217, 255, 0.34);
  background: rgba(119, 217, 255, 0.12);
  color: #caefff;
}

.compactField {
  min-width: 160px;
}

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

.metricCard {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px;
  overflow: hidden;
}

.metricValue {
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--text);
}

.metricLabel {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.progressTrack {
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  overflow: hidden;
  margin: 8px 0;
}

.progressBar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
}

.accountPage {
  max-width: 1220px;
}

.authShell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.authIntro,
.authCard,
.accountHero,
.accountUploadPanel {
  overflow: hidden;
}

.authIntro {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 199, 107, 0.2), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(119, 217, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(14, 22, 38, 0.94), rgba(5, 9, 20, 0.78));
}

.authIntro h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.authTrustGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.authTrustGrid div {
  border: 1px solid rgba(244, 214, 150, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.authTrustGrid strong,
.authTrustGrid span {
  display: block;
}

.authTrustGrid strong {
  margin-bottom: 5px;
  color: #ffe4a8;
}

.authTrustGrid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.authCard {
  display: grid;
  align-content: start;
  gap: 16px;
}

.authTabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(244, 214, 150, 0.12);
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.4);
  padding: 5px;
}

.authTab {
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 11px 12px;
}

.authTab.is-active {
  background: linear-gradient(135deg, rgba(245, 199, 107, 0.94), rgba(255, 123, 104, 0.94));
  color: #17120a;
}

.authForm h2 {
  margin-top: 4px;
}

.passwordInputWrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.passwordInputWrap input {
  min-width: 0;
}

.passwordToggle {
  appearance: none;
  border: 1px solid rgba(244, 214, 150, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffe4a8;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  padding: 12px 13px;
}

.consentField span:first-child {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.45;
}

.accountDashboard {
  gap: 18px;
}

.accountHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
}

.accountIdentityCard {
  display: grid;
  gap: 12px;
}

.accountIdentityCard strong {
  margin: 0;
  overflow-wrap: anywhere;
}

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

.accountPrimaryGrid {
  align-items: stretch;
}

.accountProgressPanel,
.verificationPanel {
  display: grid;
  align-content: start;
}

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

.timelineList li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.32);
  padding: 13px;
}

.timelineList strong {
  color: var(--gold);
}

.timelineList span {
  color: var(--muted);
  line-height: 1.5;
}

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

.actionCard {
  appearance: none;
  display: grid;
  gap: 7px;
  min-height: 120px;
  border: 1px solid rgba(244, 214, 150, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 199, 107, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  padding: 17px;
  text-align: left;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.actionCard:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 199, 107, 0.42);
  background: rgba(255, 255, 255, 0.085);
}

.actionCard strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.actionCard span {
  color: var(--muted);
  line-height: 1.5;
}

.submissionList {
  display: grid;
  gap: 12px;
}

.submissionCard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(3, 7, 18, 0.36);
  padding: 16px;
}

.submissionCard__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.submissionCard p {
  margin: 0 0 7px;
  color: #dbe3ef;
  line-height: 1.5;
}

.submissionCard__price {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 120px;
}

.submissionCard__price strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 28px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.submissionCard__price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.statusBadge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: #dbe3ef;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statusBadge--pending,
.statusBadge--needs_more_evidence {
  border-color: rgba(245, 199, 107, 0.28);
  background: rgba(245, 199, 107, 0.13);
  color: #ffe4a8;
}

.statusBadge--approved {
  border-color: rgba(117, 224, 167, 0.28);
  background: rgba(117, 224, 167, 0.13);
  color: #d9ffe9;
}

.statusBadge--rejected,
.statusBadge--disputed,
.statusBadge--fraud_flagged {
  border-color: rgba(255, 154, 154, 0.34);
  background: rgba(255, 154, 154, 0.12);
  color: #ffd8d8;
}

.accountEmptyState {
  display: grid;
  justify-items: start;
  gap: 10px;
  border: 1px dashed rgba(244, 214, 150, 0.22);
  border-radius: 22px;
  padding: 18px;
}

.accountEmptyState span {
  color: var(--muted);
  line-height: 1.55;
}

.pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 214, 150, 0.16);
  background: rgba(245, 199, 107, 0.1);
  color: #ffe4a8;
  font-size: 12px;
  font-weight: 950;
}

.footerCopy {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footerCopy a {
  color: #ffe4a8;
  font-weight: 800;
}

.floatingFeedback {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 214, 150, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 199, 107, 0.95), rgba(255, 123, 104, 0.95));
  color: #17120a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

@media (max-width: 760px) {
  .topNav,
  .navLinks {
    align-items: stretch;
    border-radius: 24px;
  }

  .topNav {
    flex-direction: column;
  }

  .navLinks {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .navLinks a,
  .button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .hero {
    padding: 24px;
    border-radius: 26px;
  }

  .hero--split,
  .dashboardShell,
  .authShell,
  .accountHero,
  .tierGrid {
    grid-template-columns: 1fr;
  }

  .authIntro {
    min-height: auto;
  }

  .authTrustGrid,
  .accountMetricGrid,
  .accountActionsGrid {
    grid-template-columns: 1fr;
  }

  .timelineList li,
  .submissionCard {
    grid-template-columns: 1fr;
  }

  .submissionCard__price {
    justify-items: start;
  }

  .dashboardSidebar {
    position: static;
  }

  .tabNav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .tabButton {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .sectionHeader,
  .dataRow {
    flex-direction: column;
  }

  .rowActions {
    justify-content: flex-start;
  }

  .completionGrid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(38px, 14vw, 56px);
  }

  .lead {
    font-size: 16px;
  }

  .grid,
  .grid--two,
  .grid--four,
  .tierGrid,
  .venueTrustStrip,
  .insightGrid,
  .metricGrid {
    grid-template-columns: 1fr;
  }

  .panel,
  .card {
    padding: 18px;
    border-radius: 24px;
  }

  .floatingFeedback {
    right: 12px;
    bottom: 12px;
    padding: 11px 13px;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .metricGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
